|
|
|
ajax สมัครสมาชิกมีปัญหาครับ หาไม่เจอจริงๆช่วยทีครับ |
|
|
|
|
|
|
|
อันนี้หน้าฟอร์มกรอกครับ
Code (PHP)
<?
if(empty($_COOKIE[userlogin])){
} else {
header("location:index.php");
}
if($_GET["agree"]=="1"){
} else {
header("location:agree.php");
}
?>
<?php include("setting.php"); ?>
<?php
$cryptinstall="crypt/cryptographp.fct.php";
include $cryptinstall;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Rama 2 Plaza Street </title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<style type="text/css">
<!--
.style6 {color: #999999}
-->
</style>
</head>
<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 url = 'reg-user.php';
var pmeters = "tfirstname=" + encodeURI( document.getElementById("firstname").value) +
"&tsurname=" + encodeURI( document.getElementById("surname").value ) +
"&temail=" + encodeURI( document.getElementById("email").value ) +
"&tsex=" + encodeURI( document.getElementById("sex").value ) +
"&tage=" + encodeURI( document.getElementById("age").value )+
"&taddress=" + encodeURI( document.getElementById("address").value )+
"&tidnumber=" + encodeURI( document.getElementById("idnumber").value )+
"&tzipcode=" + encodeURI( document.getElementById("zipcode").value )+
"&tphone=" + encodeURI( document.getElementById("phone").value )+
"&thome=" + encodeURI( document.getElementById("home").value )+
"&tfax=" + encodeURI( document.getElementById("fax").value )+
"&tcode=" + encodeURI( document.getElementById("code").value )+
"&tusername=" + encodeURI( document.getElementById("username").value )+
"&tpassword=" + encodeURI( document.getElementById("password").value ) +
"&tpassword2=" + encodeURI( document.getElementById("password2").value );
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 = "กำลังลงทะเบียน";
}
if(HttPRequest.readyState == 4) // Return Request
{
if(HttPRequest.responseText == 'Y')
{
window.location = 'index.php';
}
else
{
document.getElementById("mySpan").innerHTML = HttPRequest.responseText;
}
}
}
}
</script>
<body>
<div style="border-top:5px #fc4d00 solid" align="center">
<div style="width:100%; background-image:url(images/logobg.png)" align="center" >
<div style="width:980px; padding:10px;" align="left">
<div style="float:right; padding:10px"><a href="service.php"><img src="images/customer-button.png" border="0" /></a></div>
<?php if(empty($_COOKIE[userlogin])) { ?>
<div style="float:right; padding:10px"><a href="register.php"><img src="images/register-button.png" border="0" /></a></div>
<? } else { ?>
<div style="float:right; padding:10px; padding-top:15px"><a href="sign-out.php"><img src="images/signout-button.png" border="0" /></a></div>
<? } ?>
<a href="index.php"><img src="images/logo-new.png" border="0" /></a></div>
</div>
<div style="width:1000px; height:90px" align="left">
<div style="float:left; width:30px; height:90px;"><img src="images/box-1.png" /></div>
<div style="float:left; width:940px; background-image:url(images/box-2.png); height:90px;">
<div style="float:left; width:150px; padding:15px; padding-left:0px"><img src="images/logowhite.png" /></div>
<?php if(empty($_COOKIE[userlogin])) { ?>
<div style="float:right; width:700px; padding:15px; padding-right:0px" align="right">
<form id="form1" name="form1" method="post" action="check.php">
<table width="468" height="25" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="53"><img src="images/user-box.png" width="45" height="24"/></td>
<td width="170"><input name="username" type="text" id="username" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:150px; height:20px; padding-left:15px;"/></td>
<td width="78"><div align="center"><img src="images/pass-box.png" width="60" height="24"/></div></td>
<td width="167"><input name="password" type="password" id="password" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:150px; height:20px; padding-left:15px"/></td>
</tr>
<tr>
<td width="53"> </td>
<td width="170"> </td>
<td width="78"> </td>
<td><div align="right">
<input name="btnRegister" type="submit" id="btnRegister" onclick="JavaScript:doCallAjax();" value="ลงชื่อเข้าใช้" style="width:90px; height:20px; margin:10px; margin-right:0px; border:1px solid #FFFFFF; background-color:#FFFFFF ; color:#fc4d00; font-size:12px" />
</div></td>
</tr>
</table>
<br />
<br />
</form>
</div>
<? } else { ?> <div style="float:right; width:700px; padding:15px; padding-right:0px" align="right">
<form id="form1" name="form1" method="post" action="check.php">
<table width="468" height="25" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><div align="right" class="style2">ยินดีต้อนรับ <? echo $ac["firstname"]; ?> <? echo $ac["surname"]; ?> เข้าสู่ระบบระบบจัดการ Rama2 Plaza Street</div></td>
</tr>
</table>
<br />
<br />
</form>
</div>
<? } ?>
</div>
<div style="float:left; width:30px; height:90px;"><img src="images/box-3.png" /></div>
</div>
<div style="width:1000px; padding-top:10px; clear:both" align="left">
<div style="float:left; width:16px; height:152px;"><img src="images/bg-1.png" /></div>
<div style="float:left; width:968px; height:152px; background-image:url(images/bg-2.png)">
<div style="float:left; padding:10px"><img src="images/interduce.png" width="485" height="116" /></div>
<div style="float:right; padding-top:10px; padding-left:5px"><a href="selectspace.php"><img src="images/box-select.png" border="0" /></a></div>
<div style="float:right; padding-top:10px; padding-left:5px"><a href="register.php"><img src="images/box-register.png" border="0" /></a></div>
<div style="float:right; padding-top:10px; padding-left:5px"><a href="checkspace.php"><img src="images/box-check.png" border="0" /></a></div>
</div>
<div style="float:left; width:16px; height:152px;"><img src="images/bg-3.png" /></div>
</div>
<div style="width:1000px; padding-top:10px; clear:both" align="left">
<div><img src="images/bg2-1.png" /></div>
<div style="background-image:url(images/bg2-3.png); padding:20px; overflow:hidden">
<div style="width:300px; float:left"><img src="images/register-button-2.png" width="126" height="44" /></div>
<div style="width:660px; float:left">
<div><img src="images/top-1.png" /></div>
<div style="width:660px; background-color:#FFFFFF;" align="center">
<table width="640" height="818" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="30" colspan="2"><div class="splitter">
<div class="minor">ข้อมูลการลงชื่อเข้าใช้</div>
</div></span></td>
</tr>
<tr>
<td width="240" height="30">ชื่อผู้ใช้ <span class="style6">(Username)</span></td>
<td height="30"><input name="username" type="text" id="username" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px"/></td>
</tr>
<tr>
<td height="30">รหัสผ่าน <span class="style6">(Password) </span></td>
<td width="400" height="30"><span id="sprytextfield11">
<input name="password" type="password" id="password" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px"/>
</span></td>
</tr>
<tr>
<td height="30">ยืนยันรหัสผ่าน <span class="style6">(Re-password) </span></td>
<td width="400" height="30"><span id="sprytextfield12">
<input name="password2" type="password" id="password2" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px"/>
</span></td>
</tr>
<tr>
<td height="30" colspan="2"><div class="splitter">
<div class="minor">ข้อมูลผู้จอง</div>
</div></td>
</tr>
<tr>
<td height="30">ชื่อ<span class="style6"> (Firstname)</span></td>
<td width="400" height="30"><input name="firstname" type="text" id="firstname" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px"/></td>
</tr>
<tr>
<td height="30">นามสกุล <span class="style6">(Lastname)</span></td>
<td height="30"><span id="lastname">
<input name="surname" type="text" id="surname" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px"/>
</span></td>
</tr>
<tr>
<td height="29">อีเมล์ <span class="style6">(E-mail)</span></td>
<td height="29"><span id="sprytextfield3">
<input name="email" type="text" id="email" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px"/>
</span></td>
</tr>
<tr>
<td height="30">เพศ <span class="style6">(Gender)</span></td>
<td height="30"><select name="sex" id="sex" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00;">
<option selected="selected">เพศ</option>
<option value="1">ชาย</option>
<option value="2">หญิง</option>
</select> </td>
</tr>
<tr>
<td height="30">อายุ<span class="style6"> (Year)</span></td>
<td height="30"><span id="years">
<input name="age" type="text" id="age" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:100px; height:20px; padding-left:15px" maxlength="2"/>
</span></td>
</tr>
<tr>
<td height="216">ที่อยู่ <span class="style6">(Address)</span></td>
<td height="216"><span id="sprytextarea1">
<textarea name="address" id="address" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:300px; height:200px; padding-left:15px"></textarea>
</span></td>
</tr>
<tr>
<td height="30">รหัสบัตรประจำตัวประชาชน <span class="style6">(No. ID)</span></td>
<td height="30"><span id="sprytextfield5">
<input name="idnumber" type="text" id="idnumber" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px" maxlength="13"/>
</span></td>
</tr>
<tr>
<td height="30">รหัสไปรษณีย์ <span class="style6">(Zipcode)</span></td>
<td height="30"><span id="sprytextfield6">
<input name="zipcode" type="text" id="zipcode" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:100px; height:20px; padding-left:15px" maxlength="5"/>
</span></td>
</tr>
<tr>
<td height="30">โทรศัพท์มือถือ <span class="style6">(Mobile phone)</span></td>
<td height="30"><span id="sprytextfield9">
<input name="phone" type="text" id="phone" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px" maxlength="10"/>
</span></td>
</tr>
<tr>
<td height="30">โทรศัพท์บ้าน<span class="style6"> (Phone home)</span></td>
<td height="30"><span id="sprytextfield8">
<input name="home" type="text" id="home" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px" maxlength="9"/>
</span></td>
</tr>
<tr>
<td height="30">เบอร์แฟกซ์ <span class="style6">(Fax)</span></td>
<td height="30"><span id="sprytextfield7">
<input name="fax" type="text" id="fax" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:220px; height:20px; padding-left:15px" maxlength="9"/>
(ถ้ามี )</span></td>
</tr>
<tr>
<td height="30">ยืนยันบุคคล <span class="style6">(Captcha)</span></td>
<td height="30"><input name="code" type="text" id="code" style="border:1px solid #CCCCCC; border-left:5px solid #fc4d00; font-size:12px; text-align:10px; background-color:#FFFFFF; cursor:pointer; width:100px; height:20px; padding-left:15px" maxlength="4"/> </td>
</tr>
<tr>
<td height="30"> </td>
<td height="30"><?php dsp_crypt(0,1); ?></td>
</tr>
<tr>
<td height="15" colspan="2"><div align="right"><span class="style8" id="mySpan" style="margin-top:10px; margin-bottom:10px"></span></div></td>
</tr>
<tr>
<td height="15"> </td>
<td height="15"><div align="right">
<input type="image" name="btnRegister" id="btnRegister" OnClick="JavaScript:doCallAjax();" src="images/register-button-3.png" />
</div></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
</div>
<div><img src="images/top-2.png" /></div>
</div>
</div>
<div><img src="images/bg2-2.png" /></div>
</div>
<div style="width:980px; padding:10px; clear:both" align="right" ><img src="images/copyright.png" width="203" height="41" /></div>
</div>
</body>
</html>
อันนี้หน้าเช็คครับ
Code (PHP)
<?php
$cryptinstall="./crypt/cryptographp.fct.php";
include $cryptinstall;
date_default_timezone_set('Asia/Bangkok');
$dt = time();
$strfirstname = trim($_POST["tfirstname"]);
$strsurname = trim($_POST["tsurname"]);
$stremail = trim($_POST["temail"]);
$strsex = trim($_POST["tsex"]);
$strage = trim($_POST["tage"]);
$straddress = trim($_POST["taddress"]);
$stridnumber = trim($_POST["tidnumber"]);
$strzipcode = trim($_POST["tzipcode"]);
$strphone = trim($_POST["tphone"]);
$strhome = trim($_POST["thome"]);
$strfax = trim($_POST["tfax"]);
$strusername = trim($_POST["tusername"]);
$strpassword = trim($_POST["tpassword"]);
$strpassword2 = trim($_POST["tpassword2"]);
//
if(trim($strusername) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง ชื่อ (username)</div>";
exit();
}
if(trim($strpassword) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง รหัสผ่าน (password)</div>";
exit();
}
if(trim($strpassword2) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง ยืนยันอีกครั้ง (re-password enter)</div>";
exit();
}
if($strpassword != $strpassword2)
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> การยืนยันของ รหัสผ่าน ไม่ตรงกัน </div>";
exit();
}
if(trim($strfirstname) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง ชื่อ (firstname)</div>";
exit();
}
if(trim($strsurname) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง นามสกุล (lastname)</div>";
exit();
}
if (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $stremail)){
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> อีเมล์ (email) ไม่ถูกต้อง </div>";
exit();
}
if(trim($stremail) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง อีเมล์ (email) </div>";
exit();
}
if(trim($strsex) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดเลือกเพศ ชื่อ (gender)</div>";
exit();
}
if(trim($strage) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง อายุ (years)</div>";
exit();
}
if(trim($straddress) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง ที่อยู่ (address)</div>";
exit();
}
if(trim($stridnumber) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง (no. id)</div>";
exit();
}
if(trim($strzipcode) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง รหัสไปรษณีย์ (zipcode)</div>";
exit();
}
if(trim($strphone) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง โทรศัพท์มือถือ (mobile phone)</div>";
exit();
}
if(trim($strhome) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง โทรศัพท์บ้าน (phone home)</div>";
exit();
}
if(trim($strfax) == "")
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> โปรดกรอกช่อง เบอร์แฟกซ์ (fax)</div>";
exit();
}
if (chk_crypt($_POST['tcode'])) {
}
else
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> การยืนยันบุคคลไม่ถูกต้อง </div>";
exit();
}
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("imtechli_nat");
mysql_query("SET character_set_results = 'utf8', character_set_client = 'utf8', character_set_connection = 'utf8', character_set_database = 'utf8', character_set_server = 'utf8'", $objConnect);
//*** Check Username (already exists) ***//
$strSQL = "SELECT * FROM account WHERE email = '".$stremail."' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "<img src=\"images/point-red.png\" /> อีเมล์นี้ถูกใช้งานแล้ว โปรดลองอีกครั้ง";
}
else
{
$strSQL = "INSERT INTO account ";
$strSQL .="(username,password,firstname,surname,email,gender,age,address,idnumber,zipcode,mobilephone,phonehome,numberfax,dt) ";
$strSQL .="VALUES ";
$strSQL .="('".$strusername."','".$strpassword."','".$strfirstname."','".$strsurname."','".$stremail."','".$strsex."','".$strage."','".$straddress."' ";
$strSQL .=",'".$stridnumber."','".$strzipcode."','".$strphone."','".$strhome."','".$strfax."','".$dt."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
$userlogin = strusername ;
setcookie("userlogin",$userlogin,time()+3600*24*356);
header("location:index.php");
echo "Y"; // Finish Register Return "Y"
}
else
{
echo "<div align=\"center\" style=\"width:620px; height:20px; padding:10px; background-color:#FFFF66; border:1px #FFCC00 solid; margin-top:10px; margin-bottom:10px\"> ไม่สามารถติดต่อกับฐานข้อมูล [".$strSQL."] </div>";
}
}
mysql_close($objConnect);
?>
เวลาผมเข้าเว็ปมา ผมกดตงลงเลยมันจะเช็คว่ายังไม่ได้กรอก username แต่คราวนี้ผมกรอกข้อมูลครบแล้ว พอกดตกลงมันก็บอกยังไมไ่ด้ใส่ username เหมือนเดิม กดตกลงมันก็ไม่ไป เมื่อก่อนมันทำได้แต่ตอนนี้มันเออเร่อ ไม่รู้เป็นเพราะอะไรผม งง ไปหมดแล้วครับ ช่วยผมดูทีครับ ajax ผมมีปัญหา
นี่รูปประกอบครับ
Tag : PHP, MySQL, Ajax
|
|
|
|
|
|
Date :
2011-05-30 13:29:13 |
By :
nattz |
View :
1029 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้าเช็ค นี่คือไฟล์ <?php include("setting.php"); ?> นี่หรือเปล่า
ลองเปลี่ยนไปใช้ที่ไฟล์ reg-user.php ดูครับ
|
|
|
|
|
Date :
2011-05-30 13:47:45 |
By :
ไวยวิทย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|