|
|
|
สอบถามปัญหา radio ใน TD เดียวกัน (Array) ทำไงให้ไม่ทับกัน |
|
|
|
|
|
|
|
ผมต้องการติ๊กสถานะ ของ TD ของใครของมัน
ไม่ทราบว่าต้องเเก้ไขตรงไหนครับ ขอบคุณครับ
ต้องการ ติ๊ก คนละ ตารางครับ
นี้โค็ดครับ
Code (PHP)
<div class="row">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th ><center>ชื่อสินค้า</center></th>
<th style="width: 100px"><center>โหล</center></th>
<th style="width: 100px"><center>ชิ้น</center></th>
<th style="width: 100px"><center>ส่วนลด</center></th>
<th style="width: 100px"><center>ราคา</center></th>
<th style="width: 200px"><center>สถานะ</center></th>
</tr>
</thead>
<tbody>
<?php
include 'connectdbPHP.php.';
$sql = mysql_query("SELECT id,id_cart,name_product,amount1,amount2,discount,list_discount,sum FROM tb_cart_detail
LEFT JOIN tb_product ON (tb_cart_detail.id_product = tb_product.id_product)
WHERE tb_cart_detail.id_cart = '" . $_GET['id_cart'] . "' ");
$detailorder = array();
while ($row = mysql_fetch_array($sql)) {
$detailorder[] = $row;
}
foreach ($detailorder as $row) {
echo '<tr>';
echo '<td>' . $row['name_product'] . '</td>';
echo '<td>' . $row['amount1'] . '</td>';
echo '<td>' . $row['amount2'] . '</td>';
echo '<td>' . $row['discount'] . $row['list_discount'] . '</td>';
echo '<td>' . $row['sum'] . '</td>';
echo '<td ><input type="radio" onclick="alerrt()" style="text-align:center;" name="radios" id="radio1"><lable> มีของ </lable> '
. '<input type="radio" onclick="alerrt()" style="text-align:center;" name="radios" id="radio2"><lable> ไม่มีของ</lable> '
. '<input type="radio" onclick="alerrt()" style="text-align:center;" name="radios" id="radio3"><lable> รอของ</lable></td>';
echo '</tr>';
}
//Database::disconnect();
?>
</tbody>
</table>
ขอรบกสนด้วยครับ
Tag : PHP, HTML/CSS, JavaScript, Windows
|
|
|
|
|
|
Date :
2017-04-10 22:53:34 |
By :
CSASABAHOZ |
View :
656 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับที่ ช่วยเหลือ ต้องเอาไปใส่เเล้ว
ใช้ไม่ได้ ครับบ มันยัง ไม่เเบ่ง radio กัน ครับ
|
|
|
|
|
Date :
2017-04-11 16:07:31 |
By :
CSASABAHOZ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดู code ปัจจุบันครับ
|
|
|
|
|
Date :
2017-04-12 15:33:22 |
By :
dudesaranyu |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|