|
|
|
อยากให้ตรงช่องที่กรอกอีเมล์นะค่ะเวลาที่มันไม่มีข้อมูลอยากให้มันเป็นค่าว่างตลอด |
|
|
|
|
|
|
|
คือว่าตอนแรกมันก็เช็คค่าว่างให้อยู่ถ้าเราไม่คลิกที่ช่องของมัน แล้วที่นี้ตอนที่กรอกอีเมล์ในรูปแบบที่ผิดไป เช่น aahotmail.com แล้วลบข้อมูลออกหมดทำไมมันไม่ฟ้องว่าเป็นค่าว่างให้ค่ะ มันฟ้องเป็นรูปแบบอีเมล์ไม่ถูกต้องค่ะ รบกวนช่วยด้วยนะค่ะ
คืออยากให้ตรงช่องที่กรอกอีเมล์นะค่ะเวลาที่มันไม่มีข้อมูลอยากให้มันเป็นค่าว่างตลอด ขอบคุณล่วงหน้าค่ะ
RegisterCode (PHP)
<!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>
<SCRIPT language=javascript>
function check_key_number() {
use_key=event.keyCode
if (use_key != 13 && (use_key < 48) || (use_key > 57)) {
event.returnValue = false;
alert("ต้องเป็นตัวเลขเท่านั้น กรุณาตรวจสอบข้อมูลอีกครั้ง");
}
}
function check_email(elm){
var regex_email=/^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*\@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*(\.([a-zA-Z]){2,4})$/
if(!elm.value.match(regex_email)){
alert('รูปแบบอีเมล์ไม่ถูกต้อง');
}
}
</script>
<title>Register</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style1 {color: #FF0066}
.style2 {color: #FF0033}
.style3 {color: #6633CC}
-->
</style>
</head>
<body>
<div class="main">
<div class="clr"></div>
<div class="main">
<div class="search"></div>
<div class="clr"></div>
<div class="header">
<div class="logo">
<h1><span class="style1"> Banhom Shop Online </span></h1>
</div>
<div class="menu_nav">
<ul>
<li class="active"><a href="index.php">หน้าแรก</a></li>
<li><a href="How to order.php">วิธีการสั่งซื้อ</a></li>
<li><a href="How to payment.php">วิธีการชำระเงิน</a></li>
<li><a href="register.php">สมัครสมาชิก</a></li>
<li><a href="login.php">เข้าสู่ระบบ</a></li>
<li><a href="contact.php">ติดต่อเรา</a></li>
</ul>
<div class="clr"></div>
</div>
<div class="clr"></div>
</div>
<div class="hbg">
<div align="center"><img src="image/logoo.jpg" width="969" height="300" alt="" /></div>
</div>
</p>
</div>
<table width="844" border="0">
<tr>
<td height="153" colspan="2" align="center"><center><form action="save_register.php" method="post" name="form1" id="form1">
<table width="844" height="109" border="0">
<tr>
<td align="center" valign="bottom"><img src="Image/register2.gif" width="676" height="50" /></td>
</tr>
</table>
<p><br />
</p>
<center>
<table width="400" border="0" style="width: 400px">
<tbody>
<tr>
<td width="127" align="right"> ชื่อผู้ใช้งาน:</td>
<td width="263"><input name="txtUsername" type="text" id="txtUsername" size="20" maxlength="20" />
*</td>
</tr>
<tr>
<td align="right"> รหัสผ่าน:</td>
<td><input name="txtPassword" type="password" id="txtPassword" maxlength="8" />
*</td>
</tr>
<tr>
<td align="right"> ยืนยันรหัสผ่าน:</td>
<td><input name="txtConPassword" type="password" id="txtConPassword" maxlength="8" />
*</td>
</tr>
<tr>
<td align="right"> ชื่อ-สกุล:</td>
<td><input name="txtName" type="text" id="txtName" size="30" maxlength="40" />
*</td>
</tr>
<tr>
<td align="right"> ที่อยู่:</td>
<td><input name="txtAddress" type="text" id="txtAddress" size="35" />
*</td>
</tr>
<tr>
<td align="right"> เบอร์โทร:</td>
<td><input name="txtPhone" type="text" id="txtPhone" onKeyPress="check_key_number();" value="" maxlength="10" onpaste="return false;" />
*</td>
</tr>
<tr>
<td align="right"> อีเมล์:</td>
<td><input type='text' id='txtEmail' onblur='check_email(this)'>
*</td>
</tr>
</tbody>
</table>
</center>
<br />
<center>
<p>
<input type="submit" name="Submit" value="ลงทะเบียน" />
<input type="reset" name="button2" id="button2" value="เคลียร์" />
</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</center>
</form>
<center>
<p> </p>
<p> </p>
<div class="footer">
<div align="center"><img src="image/end.gif" width="930" height="222" alt=""/></div>
</div>
</center>
<div class="clr"></div>
</body>
</html>
save_registerCode (PHP)
<!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>Untitled Document</title>
<style type="text/css">
body,td,th {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
}
</style>
</head>
<?php
include "connect.php";
if(trim($_POST["txtUsername"]) == "")
{
echo "<script> alert('กรุณากรอกชือผู้ใช้')</script>";
echo "<script>history.back();</script>";
exit();
}
if(trim($_POST["txtPassword"]) == "")
{
echo "<script> alert('กรุณากรอกรหัสผ่าน')</script>";
echo "<script>history.back();</script>";
exit();
}
if($_POST["txtPassword"] != $_POST["txtConPassword"])
{
echo "<script> alert('รหัสผ่านไม่ตรงกัน')</script>";
echo "<script>history.back();</script>";
exit();
}
if(trim($_POST["txtName"]) == "")
{
echo "<script> alert('กรุณากรอกชือ-สกุล')</script>";
echo "<script>history.back();</script>";
exit();
}
if(trim($_POST["txtAddress"]) == "")
{
echo "<script> alert('กรุณากรอกที่อยู่')</script>";
echo "<script>history.back();</script>";
exit();
}
if(trim($_POST['txtPhone']) == "")
{
echo "<script> alert('กรุณาเบอร์โทรศัพท์')</script>";
echo "<script>history.back();</script>";
exit();
}
if(trim($_POST["txtEmail"]) == "")
{
echo "<script> alert('กรุณากรอกอีเมล์')</script>";
echo "<script>history.back();</script>";
exit();
}
$strSQL = "SELECT * FROM member WHERE Username = '".trim($_POST['txtUsername'])."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "Username already exists!";
}
else
{
$strSQL = "INSERT INTO member (Username,Password,Name,Address,Phone,Email) VALUES ('".$_POST["txtUsername"]."',
'".$_POST["txtPassword"]."','".$_POST["txtName"]."','".$_POST["txtAddress"]."','".$_POST["txtPhone"]."','".$_POST["txtEmail"]."')";
$objQuery = mysql_query($strSQL);
if(!$objResult)
{
?>
<script language="JavaScript">
alert("ลงทะเบียนเรียบร้อยแล้วค่ะ");
window.location.href = "register.php";
</script>
<?
}
}
mysql_close();
?>
<body>
<div align="center"></div>
</body>
</html>
Tag : PHP, CakePHP
|
ประวัติการแก้ไข 2014-06-26 02:30:01 2014-06-26 02:30:38
|
|
|
|
|
Date :
2014-06-26 02:28:00 |
By :
zerza18 |
View :
727 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เราก็ต้องให้มันเช็คค่าว่างด้วยสิครับ
012.function check_email(elm){
013.var regex_email=/^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*\@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*(\.([a-zA-Z]){2,4})$/
014.if(!elm.value.match(regex_email)){
015.alert('รูปแบบอีเมล์ไม่ถูกต้อง');
016.}
017.}
แก้เป็น
Code (PHP)
function check_email(elm){
if(elm.value.length==0){
alert('กรุณากรอก อีเมล์'); elm.focus();
}else{
var regex_email=/^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*\@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*(\.([a-zA-Z]){2,4})$/
if(!elm.value.match(regex_email)){
alert('รูปแบบอีเมล์ไม่ถูกต้อง'); elm.focus();
}
}
}
|
ประวัติการแก้ไข 2014-06-26 07:49:24
|
|
|
|
Date :
2014-06-26 07:49:04 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วขอบคุณมากนะค่ะ
|
|
|
|
|
Date :
2014-06-26 14:20:29 |
By :
zerza18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|