When you have a form with the action set to $PHP_SELF, does it reload the page and run code from the very top of the page or does it just send the variables from the form and continue the php code that is AFTER the form?
Thanks,
Jon
It calls the page as a new HTTP request and starts from the top again.
Ok, thanks!