|
|
|
ช่วยดูโค๊ดให้หน่อยครับ เกี่ยวกับ explode ในกรณีที่มีมากกว่า 1 string |
|
|
|
|
|
|
|
Code (PHP)
foreach($explode as $e)
{
echo '<div style="width:100px; float:left; margin:0 15px 15px 0">
<div style="width:100%; background: white; border: 1px solid #aaa; text-align:center"><img src="' . $e . '.png" height="50px" width="50px"></div><div style="width:100%; background: #f2f2f2; font-weight: bold; border: 1px solid #aaa; border-top: 0; text-align:center; font-size:10px">(' . $e . ')</div></div>';
}
}
แก้เป็น
แยก style ไปไว้ส่วน head ประหยัด bandwidth ไปได้เยอะ
Code (PHP)
<style>
.div_cap{ width:100%; background: #f2f2f2; font-weight: bold;
border: 1px solid #aaa; border-top: 0; text-align:center; font-size:10px
}
.div_img_parent{width:100px; float:left; margin:0 15px 15px 0}
.div_img_child{width:100%; background: white; border: 1px solid #aaa; text-align:center
}
</style>
<?php
foreach($explode as $e){
list($cap, $src) = explode(':', $e);
$src .=".png";
echo <<<HTML
<div class="div_img_parent">
<div class="div_img_child">
<img src="$src" height="50px" width="50px">
</div>
<div class="div_cap" >($cap)</div>
</div>
HTML;
}
}
|
|
|
|
|
Date :
2016-04-27 06:13:00 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ
ขอบพระคุณเป็นอย่างสูงครับ
พอดึพึ่งหัดเขียน php ครับ
เขียนไม่ถูกโค๊ดอาจจะมั่วๆไปหน่อย
|
|
|
|
|
Date :
2016-04-27 12:18:05 |
By :
infonu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|