如何在echo statement.code中插入php代码(substr)

时间:2012-09-06 01:24:21

标签: php mysql phpmyadmin

我在phpmyadmin中有一个列“filename”(等于$title)。是否可以插入substr ...

继承我的代码:

echo "   
<tr>
<td><img src =\"$pic_id\" style =\"width:100%;\"></td>
<td width=\"20%\">".$rows['username']."</td>       
<TD width=\"40px\"><a href=\"$f\"><b>
<php substr($title, 0, 35); ?>
<br><font color=\"red\">$log</font></b></a></td>
</tr>";

1 个答案:

答案 0 :(得分:1)

只是因为我希望你带走那些可怕的代码:

echo "   
<tr>
<td><img src =\"$pic_id\" style =\"width:100%;\"></td>
<td width=\"20%\">".$rows['username']."</td>       
<TD width=\"40px\"><a href=\"$f\"><b>
".substr($title, 0, 35)."
<br><font color=\"red\">$log</font></b></a></td>
</tr>";