hi
thank you very much
but i have now a select option
<form action="" method="post">
"Inscription poussin né en 2014"<select name=poussin[]>
<option selected> 0
<option> 1
</select>
"Inscription enfant né en 2015 et +"<select name=enfants[]>
<option selected> 0
<option> 1
<option >2
</select>
<input type="submit" value="Valider" />
</form>
and i want to have a redirection with 2 conditions.
code of my snippet
if(($_POST['poussin'] == "1") and ($_POST['enfants'] == "0")){
header('Location: https://www.inscriptionsoccervg.ojjo.ca/inscription-un-poussin/');
}
But it doesn’t work !!
could you help me please
thanks