Hi,
I have made a little form like this:
<form name="form1" method="post" action="<?php echo $PHP_SELF?>">
<input type="text" name="name"><input type="submit" name="Submit" value="add">
</form>
Once submitted I check with something like this:
if ($Submit) {
...
}
now, why it is working if I make a click on the submit button, while it is not working if I press Enter from the keyboard ?
Am I mad ?
Thanks
Fabio