For example:
Code: Select all
<?php
//A string too long for GET
$tooLongForGET = "Ipsum epsum lorem indige...you get the idea..."
//Another string too long for GET
$tooLongForGET2 = "Ipsum epsum lorem indige..."
$URL="http://localhost/test/form.php";
header ("Location: $URL");
?>I have had to store the variable's contents to a mysql database in order to pass on the data to the form; however, I would MUCH rather just send the data using POST variables or some other similar method. How would I send those two variable's data to the page "form.php" automatically without waiting for a user to click any buttons or anything? Thanks in advance!