$t1=$_GET['t1'];
$t2=$_GET['t2'];
if($t1=="yes"){$t1v="checked";}
else{$t1v=="";}
if($t2=="yes"){$t2v="checked";}
else{$t2v=="";}
echo "<form method=post action=pb-chk.php>
<input type=checkbox name=t1 value=yes $t1v> This is first checkbox<br>
<input type=checkbox name=t2 value=yes $t2v> This is second checkbox
<input type=submit value=Submit>";
To keep the second page simple we will keep only the redirection part. Here we have excluded the part which takes care if the form passes its validation and execute the actual script. $t1=$_POST['t1']; // receive form ( checkbox value) data using POST method
$t2=$_POST['t2'];
header ("Location: pb-check.php?t1=$t1&t2=$t2"); // redirect to First page or Form page
Difference between GET and POST method of Form submission
Author
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.
AARON | 04-01-2019 |
I have been searching the whole net for this and here I am with the true answer to my problem. Thank you! |