Is there any way to make auto-submit with html/php/javascript?
Right now, I'm using "header" like..
header("Location: abc.php?offset=$offset&password=$password&numRows=$numRows");
But I want to make it "Post" not "Get".
Thank you.If you wish to use POST, then use hidden form fields instead of the query string. Then use JAVAscript and a body onload event to submit the form data automatically.
Right now, I'm using "header" like..
header("Location: abc.php?offset=$offset&password=$password&numRows=$numRows");
But I want to make it "Post" not "Get".
Thank you.If you wish to use POST, then use hidden form fields instead of the query string. Then use JAVAscript and a body onload event to submit the form data automatically.