Is anyone who kan show me how I can send more than 2 parameters to another page? I having trouble with this. I have a search in a page.( navigation.php). Here is a dropdown. I want to send the dropdow parameter with the search word to a page called (search.php) page.
------------------------------------------------------------------------------
<form action="contents.php?id=11 & par1={$mot} & par2= {$ou}" method="post">
Recherche<br/>
<input type="text" name="search"/><br/>
<select name="fields">
<option>Actualité</option>
<option>Annonces</option>
<option>Culture</option>
<option>Ecrivains</option>
<option>Musique</option>
<option>Art</option>
<option>Contes</option>
</select>
<input type="submit" name="submit" value="chercher"/>
</form>
<?php
if(isset($_POST['submit']))
{
$mot = $_GET['name'];
$ou = $_GET['fields'];
---------------------------------------------------------------------------
Thanks for anyone will help me.
Temax