クエリ結果からデータを取得しようとしています。今私がしようとしているのは、質問に画像がない場合は空白を出力することです。質問に画像がある場合は、画像タグを使用して画像を出力します。ただし、唯一の問題は、出力し続けること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 = ' ';
} else {
?>
<p>
<img alt="<?php echo $arrImageFile[$key]; ?>" height="200" width="200" src="<?php echo $arrImageFile[$key]; ?>">
</p>
<?php
}
//end:procedure image
?>
</div>
<?php } ?>