Retaining checkbox value of a form after posting

We use checkbox in our forms and we will learn here how to post back or retain the value ( status ) of the checkbox. This tutorial is part of the series where we will try to understand how to retain value of every component of a form. You can read our main tutorial on how to retain value for component of a form here.

. We will use php header redirection to post back the values to our main page where checkbox is present. We will call form page as first page and action or submitted page as second page. The form data will be received by second page and after validation it is supposed to complete all the processing and in case of error it will post back the form data back to form page by using query string through address bar. 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.

We will use the example of two checkbox but same system can be extended to more than two or single checkbox in a form.

Here is the code of a form with two checkboxes
$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>";
Here is the code of second page, pb-chk.php
$t1=$_POST['t1'];
$t2=$_POST['t2'];
header ("Location: pb-check.php?t1=$t1&t2=$t2");
Here is the demo of the script with two checkboxes. This page will retain the status of the two checkboxes after submit. You can check or uncheck the value and test it.
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com




    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!

    Post your comments , suggestion , error , requirements etc here .




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2023 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer