hi,
i have already come up with an alternate solution to this problem, i thought it was strange though and wanted to see if anyone can explain this:
i have a form with a submit button:
name=submit value=submit type=submit
the form action is $PHP_SELF, when it loads it looks for the variable $submit and if it is there, the code is executed. for some reason if the enter key is pressed, the submit button seems to be bypassed and my code does not run. if the button is clicked, everything works as expected.
i resolved this by adding a hidden field:
name=fsubmit value=fsubmit type=hidden
now i check for $fsubmit and it works fine both ways. any explanation for this?
site is http://dormroad.com
thanks!
paul