|
|
|
สอบถามเรื่องปัญหาการใช้ Cookies บน Server คับผม ขอความกรุณาด้วย |
|
|
|
|
|
|
|
ตัวแปร $chk อยู่ไหนอะไม่ได้กำหนดค่า หรือป่าวครับ
|
|
|
|
|
Date :
2013-07-22 23:39:15 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่คับพี่อีกหน้า
Code (PHP)
<script language="JavaScript">
var HttPRequest = false;
function doCallAjax() {
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest) {
alert('Cannot create XMLHTTP instance');
return false;
}
var pmeters = "tUsername=" + encodeURI( document.getElementById("txtUsername").value) +
"&tPassword=" + encodeURI( document.getElementById("txtPassword").value );
var _chk = document.getElementById("chk").value;
if(document.frmMain.chk.checked == false){
var url = 'chklogin.php';
}
if(document.frmMain.chk.checked == true){
var url = 'chklogin.php?chk=on';
}
HttPRequest.open('POST',url,true);
HttPRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
HttPRequest.setRequestHeader("Content-length", pmeters.length);
HttPRequest.setRequestHeader("Connection", "close");
HttPRequest.send(pmeters);
HttPRequest.onreadystatechange = function()
{
if(HttPRequest.readyState == 3) // Loading Request
{
document.getElementById("mySpan").innerHTML = "Now is Loading...";
}
if(HttPRequest.readyState == 4) // Return Request
{
if(HttPRequest.responseText == 'Y')
{
window.location = 'sucses.php';
}
else
{
document.getElementById("mySpan").innerHTML = HttPRequest.responseText;
}
}
}
}
</script>
<form name="frmMain">
<input name="txtUsername" id="txtUsername" type="text" class="name" style="width:270px; height:36px;" onKeyUp="replaceDigit(this)" placeholder="[email protected]" value="<?=$_SESSION["Mem_Mail"]?>" />
<input name="txtPassword" id="txtPassword" type="password" class="name" style="width:270px; height:36px;" onKeyUp="replaceDigit(this)" placeholder="Password" /></div></th>
จำฉันไว้ในระบบ <input type="checkbox" name="chk" id="chk" value="on"/>
<input name="btnLogin" type="button" class="bl" id="btnLogin" OnClick="JavaScript:doCallAjax();"></td>
</form>
|
|
|
|
|
Date :
2013-07-23 00:10:08 |
By :
บ้านนอกคับป๋ม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
server ส่วยใหญ่ไม่เปิดให้ใช้ $chk ต้อง $_POST['chk'] เลิกเขียนได้แล้วครับ แบบนั้น
|
|
|
|
|
Date :
2013-07-23 00:38:18 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วต้องเขียนแบบไหนคับ รบกวนพี่ช่วยแนะนำทีคับ
|
|
|
|
|
Date :
2013-07-23 01:11:37 |
By :
บ้านนอกคับป๋ม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$_GET['chk่] $_POST['chk่]
$_REQUEST['chk'] ลองหาข้อมูลดูส่งแบบไหนแล้วจะรับแบบไหน
จากcode ส่งแแบบ get เอา get ไปรับครับ
|
ประวัติการแก้ไข 2013-07-23 01:22:35 2013-07-23 01:24:08
|
|
|
|
Date :
2013-07-23 01:20:34 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากกกคับ ได้แล้วคับ รับแบบ Get จิงๆด้วย
ก้อจะได้แบบนี้คับ
if($_GET['chk'] == "on") ตรงเช็ค
พี่สุดยอดจิงๆ
|
|
|
|
|
Date :
2013-07-23 01:42:15 |
By :
บ้านนอกคับป๋ม |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปกติจะใช้ smtp ลองถามพี่ goo ดู ครับ php mailer smtp
|
|
|
|
|
Date :
2013-07-23 08:33:45 |
By :
gaowteen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|