PHP beginner |
|
Hallo,
Dacht net dat ik het opgelost had, maar krijg toch weer de fout.
Dit is mijn code
PS: Zonder de 2e wijziging (achter de comma) werkt het wel, maar ik heb alles ongeveer geprobeerd en kom niet verder.
heb update maar gewijzigd in show.. (dacht dat het daar aan kon liggen.)
Code:
<?PHP
$nr = "1";
@mysql_query("UPDATE `cms_aanbieding_vd_week` set product_id='".$_GET['id']."',show='1' WHERE id='1'") or die(mysql_error());
header("Location: index.php?pagina=producten/details.php&id=".$_GET['id']."");
?>
<?PHP $nr = "1"; @mysql_query("UPDATE `cms_aanbieding_vd_week` set product_id='".$_GET['id']."',show='1' WHERE id='1'") or die(mysql_error()); header("Location: index.php?pagina=producten/details.php&id=".$_GET['id'].""); ?>
fout:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'show='1' WHERE id='1'' at line 1
You have an error in your SQL syntax ; check the manual that corresponds to your MySQL server version for the right syntax to use near 'show='1' WHERE id='1'' at line 1
|