I keep getting this error but I dont see any thing wrong
Parse error: parse error, unexpected '}' in /usr/local/apache2/htdocs/right.php on line 67
line 67 is the very last line I show you here
$SQL = "SELECT * FROM shoppingcart WHERE account_ID='$account'";
# execute SQL statement
$retid = mysql_db_query($db, $SQL, $cid);
# check for errors
if (!$retid) { echo( mysql_error()); }
else {
$v=array();
# display results
while ($row = mysql_fetch_array($retid)) {
$shoppingcart_ID = $row["shoppingcart_ID"];
$item_ID = $row["item_ID"];
$account_ID = $row["account_ID"];
$quanity = $row["quanity"];
$v[] =$quanty;
$SQL = "SELECT * FROM Item WHERE Item_ID='$item_ID'";
$retid1 = mysql_db_query($db, $SQL, $cid);
if (!$retid1) { echo( mysql_error()); }
else {
$a=array();
while ($row1 = mysql_fetch_array($retid1)) {
$Price = $row1['Price'];
$Sale_price = $row1["Sale_price"];
$saleyesno = $row1["saleyesno"];
if($saleyesno=='yes'){$price1=$Sale_price * $quanty;}
else {$price1=$Price * $quanty;}
$a[] =$price1
}}}}