0

データベースに保存した画像をこのHTMLテーブルに表示したいと思います。ファイルを「BLOB」として保存し、「写真」列の下に画像を表示したいと思います。画像をエコーアウトするためにどのコードを使用しますか?

    <table wactidth='100%' border='1' cellspacing='0' align="center">
    <thead align='left'>
        <th>Photo</th>
        <th>Act Name</th>   
        <th>Genre</th>
        <th>First Name</th>
        <th>Last Name</th>
        <th>Number of People</th>
        <th>Actions</th>

    </thead>
    <tbody>
    <?php foreach($acts as $act):?>
        <tr>
            <td><!-- I WANT TO DISPLAY THE IMAGES UNDER THIS COLUMN--></td>
            <td><?php echo $act['ActName'];?></td>
            <td><?php echo $act['Genre'];?></td>
            <td><?php echo $act['ContactFirstName'];?></td>
            <td><?php echo $act['ContactLastName'];?></td>
            <td><?php echo $act['NumberOfPeople'];?></td>
            <td><a href="?editact&actid=<?php echo $act['actid'];?>">Edit</a>|<a href="?delete&actid=<?php echo $act['actid'];?>">Delete</a>|<a href="upload&actid=<?php echo $act['actid'];?>">Upload Image</td>
        </tr>
    <?php endforeach?>
    </tbody>
</table>
4

1 に答える 1

0

「/path/to/your/image.jpg」のように、画像へのパスのみを保存することをお勧めします。次に、文字列のようにパスをエコーアウトできます

<td><img src="<?php echo $act['imagepath'];?>" alt="" /></td>
于 2013-02-01T16:29:41.650 に答える