Originally posted by TrickyPhillips
1. - What's the easiest way to automatically submit a form on page load?
( I can't use "<body onload", because I'm using a global header with "include(header.php)" )
the whole point of using a form
is to give people a chance to add some data, then click 'submit'
= user submitted data
so, you want to use a form,
that redirects BEFORE anyone has any chance of adding some data ...
well, you are cruel, I must say 😃
In this case, you should NOT use any form.
Just some other way to transport your Variables values.
for example use $_SESSION to store values in one page,
then read these values, in the other, redirected to page
🙂