Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Search help

    Hi everyone there !


    I have created my presentation wich contains a lot of text. I wanna now to put a SEARCH button so the users may easily find what they look for. But I don't know the workflow where and what should I start with...

    Please help who knows the way

    Thx !



    Emilio Azeri webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. ANN: InterAKT Site Search - search in multiple tables
      Hello, We have just released a new product, MX Site Search, meant to help web developers and designers create a search form in their dynamic...
    2. #25786 [NEW]: PHP website uses cookies to remember last search phrase in search box
      From: tipsen at imada dot sdu dot dk Operating system: - PHP version: Irrelevant PHP Bug Type: Unknown/Other Function Bug...
    3. Search within Search Results
      I am trying to do a search within query results: My first search executes fine, but my second search uses the WHERE parameters of my first...
    4. search box HELP!
      One of these should do:- http://perso.planetb.fr/newton/#text http://tinyurl.com/m2zm Andrew Morton
    5. XP Search - how to not search inside .ZIP files
      Is there any way to make the Windows Explorer Search facility not search the contents of .ZIP files?
  3. #2

    Default Re: Search help

    There are several ways you can do this. One way would be to look at
    Integration New Media's V12 DBE xtra. They have a 'spider' that will
    generate a database with all your text and allow the user to search.

    You could also set up a database manually and write a search behavior.

    Judy

    "Emilio Azeri" <webforumsuser@macromedia.com> wrote in message
    news:bsrntg$lm3$1@forums.macromedia.com...
    > Hi everyone there !
    >
    >
    > I have created my presentation wich contains a lot of text. I wanna now to
    put a SEARCH button so the users may easily find what they look for. But I
    don't know the workflow where and what should I start with...
    >
    > Please help who knows the way
    >
    > Thx !
    >
    >

    JPrice Guest

  4. #3

    Default Search Help

    Hi

    This is my problem


    1.....I have a msql data base
    2.....A user can reg to the data base
    3.....Once they reg they then can post pic to the data base

    Now what i want is a php script to look for all users who have NOT posted any pic to the data base and delete them


    layout of data base is

    Favorites_link
    Form_to_Email_log
    Mailing_Lists_idx
    Mailing_Lists_list
    Mailing_Lists_log
    Mailing_Lists_pending
    Reviews_data
    ad
    admin
    admin_login
    banned_ip
    category
    expense
    hw_settings
    modules
    payment_log
    payment_pending
    price_plan
    price_plan_category
    register
    related_cat
    related_links
    reserved_field
    session
    user


    As always, any and all help is greatly appreciated.

    Thank you in advance.

    John
    hope@hope.com Guest

  5. #4

    Default search help

    hi

    i am creating a search menu
    the user can select from a drop down box whether they want to select by movie
    or actor. then they can enter there search in the text field.

    at the moment all the results are showing, how do i make it so it searches the
    search criteria for that particular item they select from the drop down menu.

    also how can i make it so users dont have to search by typing the exact word



    dosima Guest

  6. #5

    Default Re: search help

    You need to filter your database on the results page. Say you have 2 form
    fields, 1 text box named searchterm and one dropdown with the choices of
    movie and actor named category. On the results page your query should look
    something like this,

    SELECT fields
    FROM table
    WHERE field LIKE '%varsearchterm%' AND catfield = 'varcategory'

    Then setup your parameters like this,

    varsearchterm 0 Request.Form("searchterm")
    varcategory 0 Request.Form("category")

    Change Request.Form to Request.Querystring if you are using GET instead of
    POST.

    HTH,
    Drew

    "dosima" <webforumsuser@macromedia.com> wrote in message
    news:d3e1p8$o7g$1@forums.macromedia.com...
    > hi
    >
    > i am creating a search menu
    > the user can select from a drop down box whether they want to select by
    > movie
    > or actor. then they can enter there search in the text field.
    >
    > at the moment all the results are showing, how do i make it so it searches
    > the
    > search criteria for that particular item they select from the drop down
    > menu.
    >
    > also how can i make it so users dont have to search by typing the exact
    > word
    >
    >
    >

    Drew Guest

  7. #6

    Default Search Help

    I have always used Atomz search, but this customer does not want sponsored
    links. What is some good software for site searches for both static pages
    and dynamic ones. I don't mind paying for this software if its a good
    product. Thanks for your help.


    Ken Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139