Jump to content

PHP FORM POST? Posible?


Hyaku_

Recommended Posts

This is not possible without the user clicking submit but you could always have something like...
[code]
Sumbit.php
********
<?php
$submittedinformation = array($_POST);
//Now we have the information saved in an array.. lets send the user to a new page..
echo "<META HTTP-EQUIV=\"refresh\" CONTENT=\"0; URL=submit2.php?information=$submittedinformation\">";
//Then in the submit2.php you just use a GET to get the information in the url and use it!
?>
[/code]

Hope this helps.
-Andy
Link to comment
https://forums.phpfreaks.com/topic/34448-php-form-post-posible/#findComment-162214
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.