如何在循环中显示图像?

时间:2013-02-07 05:09:58

标签: php html mysqli

我正在尝试从查询结果中检索数据。现在我正在尝试的是,如果一个问题没有图像,那么只输出一个空白,否则如果问题确实有图像,则使用图像标记输出图像。但问题只是它不断输出Array

我哪里错了?

<?php foreach ($arrQuestionId as $key => $question) { ?>

    <div class='lt-container'>

        <p><?php echo htmlspecialchars($arrQuestionNo[$key]) . ": " . htmlspecialchars($arrQuestionContent[$key]); ?></p>

        <?php
//start:procedure image
        $img_result = '';
        if (empty($arrImageFile[$key])) {
            $img_result = '&nbsp;';
        } else {
            ?>

            <p>
                <img alt="<?php echo $arrImageFile[$key]; ?>" height="200" width="200" src="<?php echo $arrImageFile[$key]; ?>">
            </p>

            <?php
        }
//end:procedure image
        ?>

    </div>

<?php } ?>

1 个答案:

答案 0 :(得分:3)

<p>
<?php foreach ($arrImageFile[$key] as $i) { ?>
    <img alt="<?= $i ?>" height="200" width="200" src="<?= 'ImageFiles/'.$i ?>">
<php } ?>
</p>