html标签能写在php代码中吗
发布网友
发布时间:2022-04-18 11:46
我来回答
共3个回答
热心网友
时间:2022-04-18 13:15
可以的,通过eot的方式还可以html代码格式
<?php
$rec["picture"]=$allvars["http_host"]["photohost"].$rec["picture"];
echo <<<eot
-->
<li class="desitem">
<div class="desphoto"><a href="$detailurl" target=_blank><img src='$rec[picture]' title="$rec[subject]"></a></div>
<div class="dessubject"><a href="$detailurl" target=_blank>$rec[subjectshow]</a>$rec[digestshow]</div>
<div class="desdetail">设计师:<a href="$rl" target=_blank>$rec[usernameshow]</a> 人气:<span class="hits">$rec[hits]</span></div>
</li>
<!--
eot;
?>
热心网友
时间:2022-04-18 14:33
可以
热心网友
时间:2022-04-18 16:08
可以的
<?php
$bbs = "bbs";
echo "<p>".$bbs."</p>";
echo "<p>{$bbs}</p>";
echo "<p>$bbs</p>";
?>