|
|
|
ติดตรงตรวจสอบอีเมลล์ครับ ขึ้นว่า อีเมล์นี้ไม่มีอยู่จริง กรุณากรอกใหม่ |
|
|
|
|
|
|
|
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Register</title>
<link type="text/css" rel="stylesheet" href="style.css">
<div class="content">
<fieldset style="border:2px solid goldenrod;">
<legend><font color="#12768E"><b>Form Register:</b></font></legend>
<?php
//function ตรวจสอบอีเมล์ จากเว็บ ninenik.com ขอบคุณครับ.
function check_email($emailaddress){
list($email_user,$email_host)=explode("@",$emailaddress);
$host_ip=gethostbyname($email_host);
if(eregi("/^([a-zA-Z]{1,})+([a-zA-Z0-9\_\-\.]{1,})+@([a-zA-Z0-9\-\_]{1,})+([.]{1,1})+([a-zA-Z0-9\-\_\.]{1,})$/; "
, $emailaddress) && !ereg($host_ip,$email_host))
{
return false;
}
}
?>
<?php
include 'config.php'; //เรียกใช้ไฟล์ config
$username = $_POST['username'];
$password = $_POST['password'];
$password_cf = $_POST['password_cf'];
$emailaddress = $_POST['emailaddress'];
if($username=="" || $password==""
|| $password_cf=="" || $emailaddress=="")
{
$empty_error="<center><font color=red>กรุณากรอกข้อมูลให้ครบ</font>";
echo $empty_error;
echo " <a href='register.php'>
<input type='button'value='Back'style='background:#3B59A8;
border:1px solid #000;color:#ffffff;font-weight:bold;'/></a>
</center>";
exit();
}
else if($password != $password_cf)
{
$confirm = "<center><font color=red>การยืนยัน password ไม่ตรงกัน</font>";
echo $confirm;
echo " <a href='register.php'>
<input type='button'value='Back'style='background:#3B59A8;
border:1px solid #000;color:#ffffff;font-weight:bold;'/></a>
</center>";
exit();
}
else
{
if(check_email($emailaddress)==false)//ใช้งาน function ตรวจสอบอีเมล์
{
$email_error = "<center><font color=red>
อีเมล์นี้ไม่มีอยู่จริง กรุณากรอกใหม่</font>";
echo $email_error;
echo " <a href='register.php'>
<input type='button'value='Back'style='background:#3B59A8;
border:1px solid #000;color:#ffffff;font-weight:bold;'/></a>
</center>";
exit();
}
//เมื่อทุกอย่างผ่านหมดแล้ว เช็คข้อมูลซ้ำจากฐานข้อมูล
$sql = "select * from members where username='$username'
|| emailaddress='$emailaddress'";
$result = mysql_query($sql,$link);
$num = mysql_num_rows($result);
if($num>0)
{
$was_used = "<center><font color=red>username หรือ
emailaddress นี้ได้ถูกใช้ไปแล้ว</font>";
echo $was_used;
echo " <a href='register.php'>
<input type='button'value='Back'style='background:#3B59A8;
border:1px solid #000;color:#ffffff;font-weight:bold;'/></a>
</center>";
exit();
}
else
{
$sql = "insert into members (username,password,emailaddress)
values ('$username','$password','$emailaddress')";
$result = mysql_query($sql,$link);
//ตรงส่วนนี้อาจจะเป็นการส่งอีเมล์เพื่อให้ user ทำการยืนยันก็ได้
echo "<center><font color=blue>Success</font>
กลับไป Login";
echo " <a href='login.php'>
<input type='button'value='Login'style='background:#3B59A8;
border:1px solid #000;color:#ffffff;font-weight:bold;'/></a>
</center>";
mysql_close();
}
}
?>
</fieldset>
</div>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2017-01-12 23:44:16 |
By :
thongchai839 |
View :
897 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jquery validate e-mail, remote
จะง่ายกว่าไหม?
|
|
|
|
|
Date :
2017-01-13 08:28:36 |
By :
fossil31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
น่าจะเช็คได้แค่ Format ครับ ส่วนที่มีอยู่จริง คิดว่าไม่น่าจะได้ครับ
|
|
|
|
|
Date :
2017-01-13 09:10:59 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สวัสดีค่ะ
|
|
|
|
|
Date :
2017-10-13 16:59:12 |
By :
ดี |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|