|
|
|
หากช่องบางช่องในตารางไม่มีรูปจะแก้ไขยังไงให้ช่องที่ไม่มีรูปเป็นพื้นขาวครับ |
|
|
|
|
|
|
|
|
ประวัติการแก้ไข 2018-08-28 16:58:21
|
|
|
|
Date :
2018-08-28 16:57:59 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$filename = ' '; //ที่อยู่ภาพ
if (file_exists($filename)) {
//โค้ดเมื่อเจอไฟล์
}
|
|
|
|
|
Date :
2018-08-28 17:41:11 |
By :
ciockie |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าอยากให้มันเปลี่ยนรูปใช้ onerror ของ javascript ก็ได้นะ
ข้อมูลเพิ่มเติม คลิก -> https://www.w3schools.com/jsref/event_onerror.asp
|
|
|
|
|
Date :
2018-08-28 18:14:24 |
By :
DK |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่ครับโค้ด ตอนนี้ผมต้องเพิ่มรูปภาพที่เป็นสีขาวแทนนะครับ สำหรับช่องที่ไม่ต้องการให้มีรูปซึ่งมันยุ่งยาก เลยคิดว่าจะพอมีวิธีไหมที่จะทำให้ช่องที่มันไม่มีรูปแสดงเป็นพื้นขาวแทน
ขอบคุณทุกท่านมากครับ
Code (PHP)
<?php
$objConnect = mysql_connect("localhost","root","12345678") or die("Error Connect to Database");
$objDB = mysql_select_db("project");
$strSQL = "SELECT * FROM tb_image where id_room ='4705' order by id_room asc ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="340" border="1">
<tr>
<th><div align="center">แถว</div></th>
<th><div align="center">c1</div></th>
<th><div align="center">c2</div></th>
<th><div align="center">c3</div></th>
<th><div align="center">c4</div></th>
<th><div align="center">c5</div></th>
<th><div align="center">c6</div></th>
<th><div align="center">c7</div></th>
<th><div align="center">c8</div></th>
<th><div align="center">c9</div></th>
<th><div align="center">c10</div></th>
<th><div align="center">c11</div></th>
<th><div align="center">c12</div></th>
<th><div align="center">c13</div></th>
</tr>
<?php
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><center><?=$objResult["id_image"];?></center></td>
<td><center><img src="myimage/<?=$objResult["c1"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c2"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c3"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c4"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c5"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c6"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c7"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c8"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c9"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c10"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c11"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c12"];?>"></center></td>
<td><center><img src="myimage/<?=$objResult["c13"];?>"></center></td>
</tr>
<?php
}
?>
|
|
|
|
|
Date :
2018-08-28 18:43:47 |
By :
Beginner |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เหมือนจะทำงานแต่ในลูป if อะครับ ทุกรูปกลายเป็นสีขาวหมด
|
|
|
|
|
Date :
2018-08-29 11:54:39 |
By :
Beginner |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับทุกท่านที่สละเวลามาช่วย ขอบคุณจริงๆครับ ตอนนี้ออกแล้ว
|
|
|
|
|
Date :
2018-08-29 12:02:56 |
By :
Beginner |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|