hvad nu ?
jeg har et script jeg ikke kan få til at opfør sig ordenligt den sigerParse error: parse error, unexpected $ in c:\programmer\apache group\apache\htdocs\my_home\calce02.php on line 25
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=$price*$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>";
echo"<p> bags of coffee are \$$fmt_price each<p>";
echo "<p> your subtotal is \$$fmt_sub_total.<p>";
echo "<p>
okey hvad er fejlen