basically I want to input two different values into a table. I have tried with this method:
Code: Select all
$integrated = isset($_POST['Integrated']) ? 'Integrated' : 'NonIntegrated';
// Construct the SQL statement
$sql = "INSERT INTO your_table (Integrated) VALUES (?)";
Please someone help
