基于预定义变量的打印图像

时间:2012-09-18 03:30:07

标签: php image e-commerce

我对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"> 

1 个答案:

答案 0 :(得分:0)

您需要像这样设置 - &gt;

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

TO

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