|
|
|
ติดปัญหา เรื่องใช้ ajax ช่วยดู โค้ดหน่อยคับ เปลี่ยนสถานะ |
|
|
|
|
|
|
|
ajax
Code (PHP)
function sper(s,p)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
//document.getElementById("txtlist").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax-save-status.php?s="+ s +'&p='+p,true);
xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlhttp.send();
}
--------------------
ตัวปุ่ม
Code (PHP)
<div class="onoffswitch">
<input type="checkbox" name="<?=$objResult['id']?>" class="onoffswitch-checkbox" id="<?=$objResult['id']?>" value="on">
<label class="onoffswitch-label" for="<?=$objResult['id']?>" onchange="sper(this.value,<?=$objResult['id']?>)" >
<div class="onoffswitch-inner"></div>
<div class="onoffswitch-switch"></div>
</label>
</div>
-------------------
หน้าที่ เชฟ status
Code (PHP)
$strSQL = "UPDATE tb_ban";
$strSQL .=" SET status='off' ";
$objQuery = mysql_query($strSQL);
$sql = "UPDATE tb_ban SET status = '".$_GET['s']."' ";
$sql .= "WHERE id = '".$_GET['p']."'" ;
$update = mysql_query($sql) or die($sql);
อยากให้ เชฟ status on off เพียง 1 ปุ่ม ที่ เหลือ จะ off อะ ครับ
เขียนโค้ด ยังไง แนะนำการเขียนที ครับ
โค้ดที่ผมทำมันเชฟไม่ได้เลย
ขอบคุนล่วงหน้าครับ
Tag : PHP, Ajax
|
|
|
|
|
|
Date :
2013-08-20 17:15:24 |
By :
nattaphong25332533 |
View :
1122 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือพอกดปุ๊บก็ ajax ไปเปลี่ยนเลยใช่มั้ยครับ?
|
|
|
|
|
Date :
2013-08-20 17:23:47 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ ครับ กด ปุ๊บ เปลี่ยน เลย ครับ
แบบ กด ปุ่มที่ 1 on
ที่เหลือ ก็ เป็น off auto เลย อะคับ
|
ประวัติการแก้ไข 2013-08-20 17:26:17
|
|
|
|
Date :
2013-08-20 17:25:12 |
By :
nattaphong25332533 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หา คน ช่วย หน่อยคับ ทำ ทั้งคืนไม่ได้ เลย
ขอบคุณล่วงหน้าครับ
|
|
|
|
|
Date :
2013-08-21 08:25:56 |
By :
nattaphong25332533 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|