猿问

<img>如何放进php中

请问我想把
<img src="images/whatson/icons/$l->typename1-icon.jpg" alt="$l->typename1" name="$l->typename1" width="45" height="5" border="0"/>;
放入php中比如
<?php
if ($l->typename1 != "0")
echo “<img/>”;
?>
正确的格式应该是怎么该的。$l->typename1是变量。
希望能帮我改改,是在迷茫了啊,谢谢啦。

阿波罗的战车
浏览 535回答 2
2回答

缥缈止盈

用PHP的echo 出来就可以了!注意php&nbsp;echo语句中嵌入html用单引号:echo '<img src="images/whatson/icons/$l->typename1-icon.jpg"&nbsp;alt="$l->typename1" name="'.$l->typename1.'" width="45" height="5" border="0"/>';

白衣染霜花

//你这样是错的<img src="images/whatson/icons/$l->typename1-icon.jpg"&nbsp;alt="$l->typename1" name="$l->typename1" width="45" height="5" border="0"/>;//改为"<img src='images/whatson/icons/'".$l->typename1."'-icon.jpg'&nbsp;alt='".$l->typename1."' name='".$l->typename1."' width='45' height='5' border='0'/>";你试试
随时随地看视频慕课网APP
我要回答