PHP - Auto Submit Form?

Alster

New member
How could I fill a text box with say "84578" then submit it - all without the webpage viewer lifting a finger?

Thanks.
Thanks ben_100_uk. I never thought of that.

But how could I auto submit the form?
 
you could send the information through the address bar?

header ("Location: yourpage.php?yourfield=84578")

then you can retrieve the field from the address bar by using

$_GET['yourfield']
 
you could send the information through the address bar?

header ("Location: yourpage.php?yourfield=84578")

then you can retrieve the field from the address bar by using

$_GET['yourfield']
 
Back
Top