Jump to content

Recommended Posts

Posted

I would like to know how to restrict the search ( with the searchbox ) to frenchs sites ( only frenchs sites as result ).

Actually the code for my searchbox is :

 

<form method=POST action="odp.php">

Search: <input type="textfield" name="search">

<input type="submit" name="submit" value="Search">

</form>

 

What can i add to let the choice between "all the web" and "frenchs sites" ?

 

Thanks.

Posted

Try adding:

<pre><font class="small">code:</font><hr><input type="hidden" cat="World/Français" /></pre><hr>

to the code to force the use of World/Français.

 

If you want to allow the user to choose, try:

<pre><font class="small">code:</font><hr><select name="cat" size="1">

<option value="" selected="selected">All Sites</option>

<option value="World/Français">French Sites</option>

</select></pre><hr>

This will give you a drop down menu that will let the user choose 'all sites' or 'french sites'.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...