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

  1. #1

    Default simple search

    Please help i have dreamweaver mx and mysql,php4,apache.
    i need to make a search page that a person adds keywords and it searches 1
    table with the details .i can do the form for the search but is it post or get.
    for the results page what is the coding or the filtering that i need

    thanks
    steve the newbie

    canujus Guest

  2. Similar Questions and Discussions

    1. HELP! Question regarding a SIMPLE search!
      I already posted this in the general discussion board but havent gotten a response: Alright guys, thanks in advance. I am fairly new to...
    2. Simple search extension
      I notice that the Simple Search extension which I got for DMMX was uopdated for MX2004. Does anyone know if there is an update for DW8?:confused;
    3. Simple Google search
      I'm trying to develop a search page for my website, but rather than using Verity I want to use Google. I have a search box in my cfm.dwt.template...
    4. create a simple search
      Simple search... Can any one give me how to start a basic search in cf.? The directory I want to search through is on another server.. Any help...
    5. HELP! Simple website search
      I want to add a search facility to my site. How do i go about this? Thanks in advance, JimR99
  3. #2

    Default Re: simple search

    I would use the POST method for the form (GET sends the data through URL,
    and this can easily be manipulated by the user, and there is a limit to how
    much data can be sent).

    Use the recordset builder in simple mode, and check the $_POST array for the
    data sent through the form.


    --
    Gareth - TMM Dreamweaver
    [url]http://www.dreamweavermxsupport.com/[/url]
    [url]http://www.garethdp.com/[/url]

    PHP Login Suite V2 - 34 Server Behaviors to build a complete Login system.
    [url]http://www.phploginsuite.co.uk/[/url]

    Co-Author: Dreamweaver MX: Instant Troubleshooter - Apress
    Co-Author: Practical Intranet Development - Apress
    Co-Author: Dreamweaver MX: Advanced PHP Web Development - Apress
    Co-Author: Dreamweaver MX: PHP Web Development - Wrox


    gareth 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