Answers for "php post variables to another page with submit button php"

PHP
0

php post variables to another page with submit button php

<html>
<form id="form" action="webAddressYouWantToRedirectTo.php" method="POST">
<input type="hidden" name="expectedPOSTVarNameOnTheOtherPage" value="<?php echo $varYouMadePreviouslyInProcessing ?>">
</form>
<script>
document.getElementById("form").submit();
</script>
</html>
Posted by: Guest on March-26-2020

Code answers related to "php post variables to another page with submit button php"

Browse Popular Code Answers by Language