我有一个名为$ row_try的记录集[' picture']。
当记录集为空或列为空时,我有一个if语句来显示我在图像文件夹中包含路径的替代图像:images / default.jpg。
它不会给我一个错误,也不会有效。它只显示空白。
*<td width="123"> </td>
<td width="600"><?php if(!empty($row_try['picture'])){ 'images/default.jpg'?> <img src="picture/<?php echo $row_try['picture']; ?>" alt="" width="600" height="300"/><?php } // Show if recordset not empty ?>
</td>*
</body>
</html>
<?php
mysql_free_result($try);
?>
答案 0 :(得分:0)
这是你的解决方案......
<td width="24"> </td>
<td width="857"><?php if($row_try['picture'] == "") echo"<img src='picture/prepup.jpg'"; { ?> <img src="picture/<?php echo $row_try['picture']; ?>" width="600" height="300"/><?php } ?> </td>