我在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>";
答案 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>";