2012-09-18 41 views
0

我對PHP很新,我想知道如何編寫這樣的代碼,對不起,我找不到搜索條件,我怎麼可能最終找到相關答案基於預定義變量的打印圖像

具體來說,這將被檢查,看是否有購物車是空的使用總

if PHP $var = 0 
then $printsrc='http://localhost/images/image1.jpg' 
elseif $var > 0 
then $printsrc='http://localhost/images/image2.jpg' 

然後將圖像標籤內改變圖像像

<img src="<php $printsrc ?>" id="hello"> 

回答

0

您需要設置這樣的 - >

<img src="<php $printsrc ?>" id="hello"> 

TO

<img src="<?php echo $printsrc ?>" id="hello">