請問 我這個代碼 哪里錯了呀?
<?php
? ? $shoesPrice = 49; //鞋子單價
? ? $shoesNum = 1; //鞋子數(shù)量
$shoesmoney = $shoesprice * $shoesnum;
? ??
$shirtPrice = 99; //襯衣單價
$shirtNum = 2; //襯衣數(shù)量
$shirtmoney = $shirtprice * $shirtnum;
$ordermoney = $shoesmoney + ?$shirtmoney;
echo $orderMoney ;
?>
??
2016-07-15
你自己寫的變量,中間字母需要大寫 ?不然怎么輸出的了
2015-12-28
變量嚴(yán)格區(qū)分大小寫
2015-09-22
大小寫問題
2015-07-23
報的什么錯誤