I got error in my php code
this is my code
function cart() {
foreach($_SESSION as $name => $value) {
if ($value>0) {
if (substr($name, 0, 5) == 'cart_'){
$id = substr($name, 5, (strlen($name)-5));
$get = mysql_query('SELECT id, name, price FROM products WHERE id=' .mysql_real_escape_string((int)$id));
while ($get_row = mysql_fetch_assoc($get)){
$sub = $get_row['price'] * $value;
echo $get_row['name'].' x '.$value.' @ '.get_row['price'].' = '.$sub.'<br />' ;
}
}
}
else{
echo "your cart is empty.";
}
}
}
and the error is
Parse error: syntax error, unexpected '[', expecting ',' or ';' in C:\xampp\htdocs\shoppingcart\cart.php on line 39
which is
echo $get_row['name'].' x '.$value.' @ '.get_row['price'].' = '.$sub.'<br />' ;
I think my code is correct
please help me
I'm just a newbie in this field
thanks
mysql_real_escape_string((int)$id). if you are expecting an integer, use (int) casting only. if you are expecting string, use mysql_real_escape_string (or something else) – Arturs Aug 29 '12 at 9:07