替代图像不显示错误

时间:2014-09-05 07:12:21

标签: php mysql

我有一个名为$ row_try的记录集[' picture']。

当记录集为空或列为空时,我有一个if语句来显示我在图像文件夹中包含路径的替代图像:images / default.jpg。

问题:

它不会给我一个错误,也不会有效。它只显示空白。

代码:

        *<td width="123">&nbsp;</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);
    ?>

1 个答案:

答案 0 :(得分:0)

这是你的解决方案......

<td width="24">&nbsp;</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 }  ?> &nbsp;</td>