Hallo zusammen,
bekomme folgende SQL Fehlermeldung
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
'and artikel.id=warenkorb.artikelid' at line 1
Kann aber leider keinen Fehler finden.
Anbei meine warenkorb.php wo der Fehler auftritt
Im Anhang Screenshoots meiner 3 SQL Tables.
Hoffe mir kann jemand weiterhelfen.
Ihr findet die komplette abfrage unter
http://www.fernstudium.stecknet.de/P...st/artikel.php
Gruß Marion
bekomme folgende SQL Fehlermeldung
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
'and artikel.id=warenkorb.artikelid' at line 1
Kann aber leider keinen Fehler finden.
Anbei meine warenkorb.php wo der Fehler auftritt
PHP-Code:
<?php
include ("dbconnect.php");
$anzahl = "select count(*) as anzahl from
warenkorb where kundennummer=
'$nummer' and artikelid='$id'";
$erg = mysql_query($anzahl) or die(mysql_error());
$bestellt = mysql_fetch_array($erg);
if(!empty($_GET['id']))
{
if($bestellt['anzahl']>0) {
$sql ="update warenkorb set
anzahl=anzahl+1 where kundennummer=
$nummer and artikelid=$id";
}
else
{
$sql ="insert into warenkorb
(anzahl, artikelid, kundennummer)
values (1, $id, ".$_SESSION['nummer']." )";
}
mysql_query($sql) or die (mysql_error());
}
$sql = "select name, preis, anzahl from
artikel, warenkorb where warenkorb.kundennummer=
".$_SESSION['nummer']." and
artikel.id=warenkorb.artikelid";
$result = mysql_query($sql) or die (mysql_error());
?>
<html>
<head><title>Bestellseite</title></head>
<body>
<h1>Warenkorb</h1>
<a href="bestellung.php">Bestellen</a><br>
<p>Folgende Artikel liegen im Warenkorb</p>
<table cellspacing=2 cellpadding=4 border=0>
<tr bgcolor="orange">
<th>Artikel</th><th>Preis</th><th>Anzahl</th>
</tr>
<?php
while($row = mysql_fetch_assoc($result))
{
print "<tr bgcolor='#cccccc'>";
print "<td>".$row['name']."</td>";
print "<td>".$row['preis']." Euro</td>";
print "<td>".$row['anzahl']."</td>";
print "</tr>";
}
?>
</table>
<p><a href="artikel.php">Zurück zur Artikelseite</a></p>
</body>
</html>
Hoffe mir kann jemand weiterhelfen.
Ihr findet die komplette abfrage unter
http://www.fernstudium.stecknet.de/P...st/artikel.php
Gruß Marion
Kommentar