Grafische gevorderde |
|
Volgens mij doe ik iets verkeerd bij de query, of daarvoor, want ook zonder het checkbox gedeelte komt er geen nieuwe rij in de tabel. Zal even een stukje code geven.
<?
if(isset($submit)){
// platforms setten
if($_POST['gba'] == TRUE) {
$gba = 1;
}
if($_POST['gbc'] == TRUE) {
$gbc = 1;
}
if($_POST['gc'] == TRUE) {
$gc = 1;
}
if($_POST['pc'] == TRUE) {
$pc = 1;
}
if($_POST['ps'] == TRUE) {
$ps = 1;
}
if($_POST['ps2'] == TRUE) {
$ps2 = 1;
}
if($_POST['psp'] == TRUE) {
$psp = 1;
}
if($_POST['xb'] == TRUE) {
$xb = 1;
}
if($_POST['xb3'] == TRUE) {
$xb3 = 1;
}
// einde platforms setten
$insert = "INSERT INTO mdgames (id, titel, cover, gba, gbc, gc, pc, ps, ps2, psp, xb, xb3, releasedate, beschrijving) VALUES ('', '$_POST[titel]', '$_POST[cover]', $gba, $gbc, $gc, $pc, $ps, $ps2, $psp, $xb, $xb3, '$_POST[releasedate]' , '$_POST[beschrijving]')";
$query = mysql_query($insert);
echo "De game is opgeslagen. Klik <a href=\"cp.php\">hier</a> om naar het control panel te gaan.";
}
?>
<? // platforms setten if($_POST['gba'] == TRUE) { $gba = 1; } if($_POST['gbc'] == TRUE) { $gbc = 1; } if($_POST['gc'] == TRUE) { $gc = 1; } if($_POST['pc'] == TRUE) { $pc = 1; } if($_POST['ps'] == TRUE) { $ps = 1; } if($_POST['ps2'] == TRUE) { $ps2 = 1; } if($_POST['psp'] == TRUE) { $psp = 1; } if($_POST['xb'] == TRUE) { $xb = 1; } if($_POST['xb3'] == TRUE) { $xb3 = 1; } // einde platforms setten $insert = "INSERT INTO mdgames (id, titel, cover, gba, gbc, gc, pc, ps, ps2, psp, xb, xb3, releasedate, beschrijving) VALUES ('', '$_POST[titel]', '$_POST[cover]', $gba, $gbc, $gc, $pc, $ps, $ps2, $psp, $xb, $xb3, '$_POST[releasedate]' , '$_POST[beschrijving]')"; echo "De game is opgeslagen. Klik <a href=\"cp.php\">hier</a> om naar het control panel te gaan."; } ?>
|