我是Cakephp的新手,我想知道如何在foreach循环中回显数据库中的图像? 我该怎么做?什么是正确的方法? 我的所有图片都在webroot文件夹中。
<?php if ( isset($beefwellington) ){ ?>
<?php foreach ($beefwellington as $wellington): ?>
<h1><?php echo $wellington['Beef']['genre']; ?></h1>
<h2><?php echo $wellington['Beef']['story']; ?></h2>
<?php endforeach; ?>
<?php } ?>
这就是我的尝试:
<?php echo $html->image('app/webroot/img' .$wellington['Beef']['picture'], array('alt' => 'story image'));
在我的数据库中,图像存储为'pumkin.jpg'
答案 0 :(得分:0)
如果您的图片位于app / webroot / img文件夹中,那么您只需要这样写:
<?php echo $this->Html->image($wellington['Beef']['picture'], array('alt' => 'story image')); ?>