Users Pricing

forum

Home Forums array_diff to insert all unchecked checkbox – MindStick

array_diff to insert all unchecked checkbox

Tan WY 3000 06 Aug 2014

anyone know is it possible to make INSERT all checkbox values into the database when there is not even one checkbox being checked since im using array_diff as shown below?
 
my problem currently facing is,
when there is a checkbox being checked, it will insert into checked_table and the remaining options which did not selected will insert into unchecked_table.
howewer, when all checkbox didnt being selected, and click on submit button, the value didnt send to my database unchecked_table.

<?php
include('connect.php');
$checked = ($_POST['date']);
$unchecked = ($_POST['nondate']);
$diff = array_diff($unchecked,$checked);
if(isset($_POST['date']))
{
foreach ($_POST['date'] as $dateValue)
{
$insert="INSERT INTO checked_table ($colm_ladate) VALUES ('$dateValue')";
mysql_query($insert);
}
echo header("location:home.php");
}
if (isset($_POST['nondate']))
{
foreach ($diff as $dateValue2)
{
$insert2="INSERT INTO unchecked_table($colm_lrdate) VALUES ('$dateValue2')";
mysql_query($insert2);
}
echo header("location:home.php");
}
 
?>

0 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md