|
|
|
จะส่งค่าจาก input แบบหลายค่าใน 1 input โดยมีเครื่องหมายคั้น |
|
|
|
|
|
|
|
Code (PHP)
<input type="checkbox" name="selectedIDs[]" value="$key" />
$products = array( 1 => array("Apple", 575), 2 => array("Grape", 525));
for($i = 0; $i < count($_POST["selectedIDs"]); $i++) {
$key = $_POST["selectedIDs"][$i];
$product = $products[$key];
echo "<tr><td height='40'></td><td>" . $product[0] . "</td><td>" . $product[1] . "</td></tr>";
แบบนี้ป่ะ ไม่รู้จะตรงตามที่ต้องการไหม
|
|
|
|
|
Date :
2017-01-10 13:09:39 |
By :
limberger |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดัน
|
|
|
|
|
Date :
2017-01-10 21:22:45 |
By :
littlebeer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รับค่าแบบนี้เหรอ 1,2,3,4,5
ก็รับค่ามาแบบ string แล้วใช้ explode แยกคำด้วยตัวคั่นมาเก็บไว้ใน array ก็ได้
|
|
|
|
|
Date :
2017-01-10 22:06:45 |
By :
tenten |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|