0
當有人點擊圖像時,我想獲取圖像存儲在mysql數據庫中的列的id,並使用它在不同的div中顯示其他數據。但我不知道該怎麼做。如何在php中點擊圖片時獲取表列的id?
這裏是我的PHP代碼:
<?php
$blog= mysqli_query($con,"SELECT * FROM blog");
while ($row = mysqli_fetch_array($blog)):
$id=$row['blog_id'];
$tit=$row['title'];
$img=$row['image'];
$cont=$row['content'];
?>
<div id="all_blog">
<img src="<?php echo $img ?>" height="150" width="200" id="blog_img"/>
</div>
<?
endwhile;
?>
謝謝它幫助。 – RonnyRules