|
|
|
ขอคำแนะนำเกี่ยวกับการ update ค่าของ checkbox ด้วยครับ |
|
|
|
|
|
|
|
คือผมได้ทำการ Insert ข้อมูลของ checkbox โดยตั้งค่า value เป็น on พอกดตกลงมันเป็น ค่า on ทั้งหมดของแต่ละฟิลด์
แต่พอจะแก้ไขข้อมูล เป็นค่า on แค่บางฟิลด์ ก็สามารถแก้ไขได้ แต่จะมี 1ฟิลด์ ที่อยุ่ดีๆ มีค่าเป็น 1 ออกมาโชว์Code (PHP)
</tr>
<tr>
<td> </td>
<td>access</td>
<br>
<td width="409" align="center">
<?php
if($row['chk1']=="on"){
?>
<input type="checkbox" name="manager" id="checkbox" checked="checked" />
<label for="checkbox"></label>
<?
}
else{
?>
<input type="checkbox" name="chk1" id="checkbox" />
<label for="checkbox"></label>
<?
}
?>chk1</td>
<br>
<td width="409" align="center">
<?php
if($row['chk2']=="on"){
?>
<input type="checkbox" name="chk2" id="checkbox" checked="checked" />
<label for="checkbox"></label>
<?
}
else{
?>
<input type="checkbox" name="chk2" id="checkbox" />
<label for="checkbox"></label>
<?
}
?>chk2</td>
<td width="409" align="center">
<?php
if($row['chk3']=="on"){
?>
<input type="checkbox" name="chk3" id="checkbox" checked="checked" />
<label for="checkbox"></label>
<?
}
else{
?>
<input type="checkbox" name="chk3" id="checkbox" />
<label for="checkbox"></label>
<?
}
?>chk3</td>
<br>
<td width="409" align="center"><?php
if($row['chk4']=="on"){
?>
<input type="checkbox" name="chk4" id="checkbox" checked="checked" />
<label for="checkbox"></label>
<?
}
else{
?>
<input type="checkbox" name="chk4" id="checkbox" />
<label for="checkbox"></label>
<?
}
?>chk4</td>
<br>
<td width="409" align="center">
<?php
if($row['chk5']=="on"){
?>
<input type="checkbox" name="chk5" id="checkbox" checked="checked" />
<label for="checkbox"></label>
<?
}
else{
?>
<input type="checkbox" name="chk5" id="checkbox" />
<label for="checkbox"></label>
<?
}
?>chk5</td>
<br>
Code (PHP)
<?
$id=$_REQUEST[id];
$sql="Update member set Password='".$_POST["txtPass"]."',Name='".$_POST["txtName"]."',LastName='".$_POST["txtLastName"]."',Gender='".$_POST["rdoGender"]."',Address='".$_POST["txtAddress"]."',Province='".$_POST["txtProvince"]."',ZipCode='".$_POST["txtZipCode"]."',Tel='".$_POST["txtTel"]."',Email='".$_POST["txtEmail"]."' where MemberID=$id";
$result=mysql_query($sql) ;
$sql1 ="update member set
manager = '$manager'
, admin = '$admin'
, sealer = '$sealer'
, delivery = '$delivery'
, werehouse = '$werehouse'
where MemberID ='$id' ";
$result=mysql_query($sql1) ;
if($result) {echo "<br>แก้ไขเรียบร้อย";}
echo"<script language='JavaScript'>";
echo"alert('เพิ่มข้อมูลเรียบร้อย');";
echo"window.location='member_staff.php';";
echo"</script>";
?>
Tag : PHP
|
|
|
|
|
|
Date :
2016-09-08 15:40:53 |
By :
tagod |
View :
646 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (HTML)
<input type="checkbox" name="chk1" id="checkbox" value="on" />
Code (PHP)
if($_POST["chk1"] == "on")
{
// Statement
}
|
|
|
|
|
Date :
2016-09-09 17:33:21 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|