hvad har den gang i
jeg får en meddelse fra serverParse error: parse error, unexpected T_VARIABLE in c:\programmer\apache group\apache\htdocs\my_home\calce02.php on line 14
mit script ser sådan her ud
<html>
<head> <title>calculate</title> </head>
<body BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#FF0000" VLINK="#800000"
ALINK="FFOOFF" BACKGROUND="?">
<?php
$price=10.00;
$sale_tax=0.825;
$quantity=4;
$sub_total=$sprice*$quantity;
$sales_tax_amount=$sub_total*$sales_tax;
$sales_tax_pct=$sales_tax*100;
$grand_total=$sub_total+$sales_tax_amount;
$fmt_price=sprintf("%0.2f",$price);
$fmt_sub_total=sprintf("%0.2f",$sub_total);
$fmt_sales_tax_amount=sprintf("%0.2f",$sales_tax_amount);
$fmt_grand_total= sprintf("0.2f";$grand_total);
echo"<p> you ordered $quantity bags of cofee <p>";