Whats wrong here...?

Status
Not open for further replies.
I *think* the problem might be right above that:

$totalamount = $tyreqty * TYREPRICE
+ $oilqty * OILPRICE
+ $sparkqty * SPARKPRICE

Is there supposed to be a semi-colon after that?
 
ya, that should hav a ;...
change:

+ $sparkqty * SPARKPRICE

to:

+ $sparkqty * SPARKPRICE;

that should fix it.
 
Status
Not open for further replies.
Back
Top Bottom