|
|
|
การใส่รูปภาพให้โชว์ทันทีที่หน้าเพจบริเวณที่ต้องการคะ |
|
|
|
|
|
|
|
ข้อแรก ให้ใช้ if ตรวจสอบค่าของ ตัวแปรที่เก็บภาพก่อนนะครับ ว่าเป็นว่างหรือเปล่าถ้าเป็นว่างก็ไม่ต้อง บันทึก ถ้าไม่ว่างก็บันทึกตามปกติ
ข้อสอง
<html>
<body>
<?
$host="localhost";
$username="";
$password="";
$db="mydatabase";
$tb="picture";
mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้"); /* ทำการเลือกฐานข้อมูลก่อน */
$sql="Select * From $tb";
$db_query=mysql_db_query($db,$sql);
$num_rows=mysql_num_rows($db_query); /* นับ Reccord ที่พบ */
?>
<table width="41%" border="1" align="center">
<tr>
<td width="8%">
<div align="center">Id</div>
</td>
<td width="11%">
<div align="center">File Name</div>
</td>
</tr>
</table>
<?
$a=0;
while($a < $num_rows)
{
$result = mysql_fetch_array($db_query);
$id=$result[id];
$picture=$result[picture];
?>
<table width="41%" border="1" align="center">
<tr>
<td width="8%">
<div align="center">
<?echo"$id";?>
</div>
</td>
<td width="11%">
[font=Verdana]<div align="center"> <img src="picture/<?echo"$picture";?>" />
</div>[/font]
</td>
</tr>
</table>
<?
$a++;
}
echo"<center><br>จำนวน Reccord = $num_rows</center>";
mysql_close();
?>
</body>
</html>
|
|
|
|
|
Date :
2008-12-31 01:31:57 |
By :
Ravatna |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|