Submit checkbox value to MySQL
Below example states that checkbox values can be stored into MySQL database using PHP program. Step 1: Create a table in MySQL with following screen shot. (Table name : Booked_Status) Step 2: Create connection string / configuration page as following example and name it ‘config2.php’ <?php $host=”localhost”; $username=”root”; $password=””; $dbname=”demo”; $con=mysql_connect(“$host”,”$username”,”$password”); mysql_select_db(“$dbname”,$con); ?> Step 3: […]
Submit checkbox value to MySQL Read More ยป
