Jump to content

Search Box


Recommended Posts

  • 2 weeks later...

Ok first you need to create search form. It will need a text box and submit button in the form section.

 

Then you will need to set these properties.

 

text box: textfield

button: submit

form name: test

 

(The object names can be be anything you want them to be, I'm just using what i've used in my code)

 

So the code will look like this now.

<form  name="test" method="post" action="search_result.php">
  <label>
  <input name="textfield" type="text" id="textfield"  />
  </label>
  <label>
  <input type="submit" name="Submit" value="Submit" />
  </label>
</form>

 

Now click on the form properties. Now set those properties.

 

Method: post

Action: search_results.php (This name should be whatever the name of your search results page is)

 

This page is now done.

 

 

For the next page

 

You need to create a recordset. Select the appropriate table and database.

 

then you need to set these values.

 

Filter: first (The field name in the database your searching in)

 

Now change 'URL Parameter' to 'Form Variable' - then with the adjacent combo-box change it to the name of the textfield in the search page. In this cases its 'textfield'

 

Now you can add your dynamictext recordset (if you want a repeat region

 

<table width="400" border="1">
  <?php do { ?>
  <tr>
    
    <td><?php echo $row_Recordset1['first']; ?></td>
    <td><?php echo $row_Recordset1['last']; ?></td>
    <td><?php echo $row_Recordset1['pay']; ?></td>
   </tr>
    <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>

 

The rest of the code will be generated by dreamweaver.

 

 

Is this what you wanted?

 

 

 

 

 

Link to comment
Share on other sites

  • 4 months later...

nice reply there, thanks for taking the time...there arent many decent tutorials out there actually!

 

I need to create a more advanced search box....can you help me out on this.

 

I want to search surnames and towns...

 

So, for example my users might search for "Thompson" in the Town of "Buxton"

 

How do I set up the variables and the run -time values?

Link to comment
Share on other sites

You'll need a more complex SQL query for something like that. Unless you want to learn SQL, then I'd go with [a href=\"http://www.interaktonline.com/Products/Dreamweaver-Extensions/MXSiteSearch/Overview/\" target=\"_blank\"]InterAKT[/a]'s site search extension.

Link to comment
Share on other sites

  • 11 months later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.