Quote (SelfTaught @ 20 Jun 2015 10:30)
If I'm understanding your question correctly, yes it is
yea, I am talking about the name:
Code
<input type="submit" name="valider" value="Valider" />
When using foreach it'll show all the previous
Code
name=" "
but since the input submit is a name too, it'll show the index and the value of it since that's what I am telling PHP to do when I write this echo
Code
echo '- '.$index.' : '.$valeur.'<br/>';
Well thanks, I just wanted to know if it was possible to remove the submit name and its value, now I will try to figure it out on my own.