Hjælp til eval()
Hej EksperterJeg har nogle problemer med flg. eval() kode. Den melder om parse error i linie 23 (den sidste). Jeg håber nogen kan hjælpe!
$varekode = eval('if($ShoppingCart)
{
$session = $ShoppingCart;
}
$contents = $cart->display_contents($table,$session);
if($contents[product][0] != "")
{
$x = 0;
while($x != $cart->num_items($table,$session))
{
echo "<TR><TD BGCOLOR=#E1E1E1><font>".$contents[product][$x]."</TD><TD BGCOLOR=#E1E1E1><font>".$contents[price][$x]."</TD>";
$product = $contents[product][$x];
echo "<TD BGCOLOR=#E1E1E1><font>".$contents[quantity][$x]."</TD>";
echo "<TD BGCOLOR=#E1E1E1><font>".$contents[total][$x]."</TD>";
$x ++;
}
echo "</TR></TABLE>";
$total = $cart->cart_total($table,$session);
echo "<BR><center><font>Total excl moms: ".$total."<br>";
$total = $total * 1.25;
echo "<b>Total med moms: ".$total."</body></html>";
');
(jeg skal bruge den til at sende en bekræftelsesmail fra et shop system til kunden..)