|
|
|
ถามเกี่ยวกับการดึงข้อมูล mysql ใน for loop ออกแค่ตัวสุดท้ายครับ |
|
|
|
|
|
|
|
ได้แค่ 3 ครับที่เข้า where ส่วน 1 ไม่เข้า where รบกวนทีครับ
Code (PHP)
<?php
include 'connect.php';
$select_item = explode(',', $_GET['item']); //1,3
$number = count($select_item); //2
// echo $select_item[0] ."<br>";
// echo $select_item[1] ."<br>";
for($i=0; $i<$number; $i++){
$sql_item = $db->prepare('SELECT list FROM tbl_machine WHERE type = :type');
$sql_item->bindParam(':type',$select_item[$i],PDO::PARAM_STR);
// $sql_item->bindParam(':type',$select_item[$i],PDO::PARAM_STR);
$sql_item->execute();
while ($results = $sql_item->fetch(PDO::FETCH_ASSOC)) {
echo $results['list'];
}
}
?>
Tag : PHP, MySQL, HTML/CSS, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2016-11-22 21:17:05 |
By :
littlebeer |
View :
777 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ละครับ
|
|
|
|
|
Date :
2016-11-23 10:43:44 |
By :
littlebeer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|