Guten Morgen,
ich bekomme kein Ergebnis aus dem array und hätte gerne einen Tipp von Euch.
Gruss
Pepsi
ich bekomme kein Ergebnis aus dem array und hätte gerne einen Tipp von Euch.
PHP-Code:
$res = mysql_query
('SELECT * FROM artikel WHERE id like "'.$_SESSION['cart'].'"');
if (!$res) {exit usw. }
print_r($_SESSION['cart']);
// Array ( [0] => 2 [1] => 3 [2] => 2 [3] => 3 [4] => 2 [5] => 3 [6] => 2 )
echo "<p>" . $res. "</p>";
//Resource id #4
while ($row = mysql_fetch_assoc($res)) {
echo "<td>".$row["vkpreis"]."</td>";
}
var_dump ($row); //bool(false)
var_dump ($row['vkpreis']); //NULL
Pepsi
Kommentar