0
Cake \ ORM \ TableRegistryを使用する。cakephp3を使用してアップロードした後にデータベースから画像を取得する。
$ websites => TableRegistry :: get( 'Websites');
$クエリ=> $ websites->)(見つける - >順([ 'CREATION_DATE' => 'DESC']);
echo "<table>"; echo"<tr> <td>Cover Image</td> <td>Company Name</td> <td>Date Added</td> </tr>"; foreach ($query as $row) { echo"<tr> <td>".$row['Website']['image']."</td> <td>".$row->company."</td <td>".$row->creation_date."</td> </tr>"; } echo"</table>"; ?>
I remember this code in cakephp2 and display the images path "app/webroot/img/websites/"
<?php echo $this->Html->image('websites/' . $row['Website']['image']);
しかし、どのように画像を表示するために、cakephp3でそれをすることができません。 ?>
以下のようにまだ私がアップロードされた画像を見るカントのように、それは簡単です。 – distromob
画像をアップロードしましたか?試したコードを追加してください。 –
は... https://gist.github.com/distromob/911e9f1bc4030de855c1c3d7f3876fe2 – distromob