Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > เช็คค่า passwordไม่ตรงกัน ยังไงครับ สงสัยโค้ดจะผิดไป



 

เช็คค่า passwordไม่ตรงกัน ยังไงครับ สงสัยโค้ดจะผิดไป

 



Topic : 092048



โพสกระทู้ ( 125 )
บทความ ( 0 )



สถานะออฟไลน์




ผมเขียนไว้อย่างนี้ แต่มันเช็คค่าไม่ตรงได้ แต่มันกับ รันตัวเลขให้ตรงกัน
และใส่ตัวเลขตรงก็ยัง เตือนไม่ตรง

Code (PHP)
if (document.all.textpassword.value = document.all.textpassword2.value)
{
alert("Username และ Password ไม่ตรงกัน");
document.all.textpassword2.select();
return false;
}




Tag : PHP, JavaScript









ประวัติการแก้ไข
2013-03-08 14:01:11
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2013-03-08 13:55:11 By : BABANGYAI View : 1026 Reply : 6
 

 

No. 1



โพสกระทู้ ( 4,169 )
บทความ ( 7 )

Hall of Fame 2012

สถานะออฟไลน์


Code (PHP)
if (document.all.textpassword.value != document.all.textpassword2.value)
{
alert("Password ไม่ตรงกัน");
document.all.textpassword2.focus();
return false;
}










ประวัติการแก้ไข
2013-03-08 15:16:56
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-03-08 14:29:45 By : Ex-[S]i[L]e[N]t
 


 

No. 2



โพสกระทู้ ( 125 )
บทความ ( 0 )



สถานะออฟไลน์


ยังไม่ได้ อะ ครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-03-08 14:48:30 By : BABANGYAI
 

 

No. 3



โพสกระทู้ ( 4,169 )
บทความ ( 7 )

Hall of Fame 2012

สถานะออฟไลน์


ขอดู form หน่อยครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-03-08 14:50:33 By : Ex-[S]i[L]e[N]t
 


 

No. 4



โพสกระทู้ ( 125 )
บทความ ( 0 )



สถานะออฟไลน์


Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>registor</title>
<script language="javascript" src="jquery-1.2.6.min.js"></script>
<script type="text/javascript">
<!-- Begin
function check_data()
{ 
var eng = /^([a-zA-Z])+$/; 
var number = /^([0-9])+$/; 
if (document.all.textname.value == "")
{
alert("กรุณาใส่ ชื่อ");
document.all.textname.select();
return false;
}
if (document.all.textaddress.value == "")
{
alert("กรุณาใส่ ที่อยู่");
document.all.textaddress.select();
return false;
}
if (document.all.textnumbercard.value == "")
{
alert("กรุณาใส่ เลขที่บัตรประชาชน");
document.all.textnumbercard.select();
return false;
}
if (document.all.textnameshop.value == "")
{
alert("กรุณาใส่ ชื่อร้าน");
document.all.textnameshop.select();
return false;
}
if (document.all.textphon.value == "")
{
alert("กรุณาใส่ เบอร์โทรศัพท์");
document.all.textphon.select();
return false;
}
if (document.all.textemail.value == "")
{
alert("กรุณาใส่ E-mail");
document.all.textemail.select();
return false;
}
if (document.all.textusername.value == "")
{
alert("กรุณาใส่ Username");
document.all.textusername.select();
return false;
}
if (document.all.textpassword.value == "")
{
alert("กรุณาใส่ Password");
document.all.textpassword.select();
return false;
}
if (document.all.textpassword2.value == "")
{
alert("กรุณายืนยัน Password อีกครั้ง");
document.all.textpassword2.select();
return false;
}
if (document.all.textpassword.value ! = document.all.textpassword2.value)
{
alert("Password ไม่ตรงกัน");
document.all.textpassword2.focus();
return false;
}

if (document.all.textyoulike.value == "")
{
alert("กรุณาตอบคำถาม 1 อย่าง สำหรับลืม Password");
document.all.textyoulike.select();
return false;
}


 
if (!(eng.test(document.all.textusername.value)))
{
alert("Username กรุณากรอกเป็นภาษาอังกฤษด้วย");
document.all.textusername.select();
return false;
}
if (!(number.test(document.all.textpassword.value)))
{
alert("Password กรุณากรอกเป็นตัวเลข");
document.all.textpassword.select();
return false;
}
} 
</head>

</script>
</head>

<body>
<a href="serach.php" style="text-decoration:none"><font color="#0033FF">หน้าแรก</font></a> 


<DIV ID="mydiv" STYLE="position:absolute; left:90; top:15; width:100;">
<a href="registorCus.php" style="text-decoration:none"><font color="#0033FF">สมัครสมาชิก</font></a> 
</DIV>


<DIV ID="mydiv" STYLE="position:absolute; left:200; top:15; width:200;">
 <font color="#0033FF">ติดต่อเรา</font>
</DIV>

<DIV ID="mydiv" STYLE="position:absolute; left:290; top:15; width:100;">
 <a href="update_Order.php" style="text-decoration:none"><font color="#0033FF">ต่ออายุสมาชิก</font></a>
</DIV>

<DIV ID="mydiv" STYLE="position:absolute; left:410; top:15; width:200;">
 <font color="#0033FF">เข้าสู่ระบบ</font>
</DIV><br>


<DIV ID="mydiv" STYLE="position:absolute; left:40; top:65; width:200;">
<font size="4" color="#666666"><b>ลงทะเบียนสมาชิก</b></font>
<br>
<br>
<font color="#FF0000">ฟรี 1 เดือนแรก</font>
  <form name="frmMainADD" method="post" action="saveRegistor.php"  onSubmit="JavaScript:return check_data();">
  <input type="hidden" name="txtfree" value="free">
<table bgcolor="#CCCCCC" bordercolor="#D8D8D8" width="320" height="0" border="0" cellpadding="1" cellspacing="0">
   <tr height="40"><td align="right"> ชื่อ /นามสกุุล</td><td><input type="text" name="txtname" id="textname" value=""></td></tr>
   <tr height="40"><td align="right">ที่อยู่ </td><td><input type="text" name="txtaddress" id="textaddress" value=""></td></tr>
   <tr height="40"><td align="right">เลขที่บัตรประชาชน</td><td><input type="text" name="txtnumbercard" id="textnumbercard"value=""></td></tr>
   <tr height="40"><td align="right">ชื่อร้านค้า</td><td><input type="text" name="txtnameshop" id="textnameshop" value=""></td></tr>
    <tr height="40"><td align="right">โทรศัพท์ </td><td><input type="text" name="txtphon" id="textphon" value=""></td></tr>
    <tr height="40"><td align="right">E-mail </td><td><input type="text" name="txtemail" id="textemail" value=""></td></tr>
	<tr height="40"><td align="right">Username </td><td><input type="text" name="txtusername" id="textusername" value=""></td></tr>
	<tr height="40"><td align="right">Password </td><td><input type="text" name="txtpassword" id="textpassword" value=""></td></tr>
	<tr height="40"><td align="right">ยืนยัน Password </td><td><input type="text" name="txtpassword2" id="textpassword2" value=""></td></tr>
	<tr height="40"><td align="right">สิ่งที่ชอบ</td>
	<td><font size="2" color="#FF0000">คำตอบสำหรับลืมPassword</font><br><input type="text" name="txtyoulike" id="textyoulike" value=""></td></tr>
	<tr height="40"><td>&nbsp;</td><td align="left"><input type="submit" name="submit" value="ยืนยัน"></td></tr>
</table>
</form>
</div>

</body>
</html>


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-03-08 15:07:00 By : BABANGYAI
 


 

No. 5



โพสกระทู้ ( 4,169 )
บทความ ( 7 )

Hall of Fame 2012

สถานะออฟไลน์


Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>registor</title>
<script language="javascript" src="jquery-1.2.6.min.js"></script>
<script type="text/javascript">
<!-- Begin
function check_data()
{ 
var eng = /^([a-zA-Z])+$/; 
var number = /^([0-9])+$/; 
if (document.all.textname.value == "")
{
alert("กรุณาใส่ ชื่อ");
document.all.textname.select();
return false;
}
if (document.all.textaddress.value == "")
{
alert("กรุณาใส่ ที่อยู่");
document.all.textaddress.select();
return false;
}
if (document.all.textnumbercard.value == "")
{
alert("กรุณาใส่ เลขที่บัตรประชาชน");
document.all.textnumbercard.select();
return false;
}
if (document.all.textnameshop.value == "")
{
alert("กรุณาใส่ ชื่อร้าน");
document.all.textnameshop.select();
return false;
}
if (document.all.textphon.value == "")
{
alert("กรุณาใส่ เบอร์โทรศัพท์");
document.all.textphon.select();
return false;
}
if (document.all.textemail.value == "")
{
alert("กรุณาใส่ E-mail");
document.all.textemail.select();
return false;
}
if (document.all.textusername.value == "")
{
alert("กรุณาใส่ Username");
document.all.textusername.select();
return false;
}
if (document.all.textpassword.value == "")
{
alert("กรุณาใส่ Password");
document.all.textpassword.select();
return false;
}
if (document.all.textpassword2.value == "")
{
alert("กรุณายืนยัน Password อีกครั้ง");
document.all.textpassword2.select();
return false;
}
if (document.all.textpassword.value != document.all.textpassword2.value)
{
alert("Password ไม่ตรงกัน");
document.all.textpassword2.select();
return false;
}

if (document.all.textyoulike.value == "")
{
alert("กรุณาตอบคำถาม 1 อย่าง สำหรับลืม Password");
document.all.textyoulike.select();
return false;
}


 
if (!(eng.test(document.all.textusername.value)))
{
alert("Username กรุณากรอกเป็นภาษาอังกฤษด้วย");
document.all.textusername.select();
return false;
}
if (!(number.test(document.all.textpassword.value)))
{
alert("Password กรุณากรอกเป็นตัวเลข");
document.all.textpassword.select();
return false;
}
} 
</script>
</head>

<body>
<a href="serach.php" style="text-decoration:none"><font color="#0033FF">หน้าแรก</font></a> 


<DIV ID="mydiv" STYLE="position:absolute; left:90; top:15; width:100;">
<a href="registorCus.php" style="text-decoration:none"><font color="#0033FF">สมัครสมาชิก</font></a> 
</DIV>


<DIV ID="mydiv" STYLE="position:absolute; left:200; top:15; width:200;">
 <font color="#0033FF">ติดต่อเรา</font>
</DIV>

<DIV ID="mydiv" STYLE="position:absolute; left:290; top:15; width:100;">
 <a href="update_Order.php" style="text-decoration:none"><font color="#0033FF">ต่ออายุสมาชิก</font></a>
</DIV>

<DIV ID="mydiv" STYLE="position:absolute; left:410; top:15; width:200;">
 <font color="#0033FF">เข้าสู่ระบบ</font>
</DIV><br>


<DIV ID="mydiv" STYLE="position:absolute; left:40; top:65; width:200;">
<font size="4" color="#666666"><b>ลงทะเบียนสมาชิก</b></font>
<br>
<br>
<font color="#FF0000">ฟรี 1 เดือนแรก</font>
  <form name="frmMainADD" method="post" action="saveRegistor.php"  onSubmit="JavaScript:return check_data();">
  <input type="hidden" name="txtfree" value="free">
<table bgcolor="#CCCCCC" bordercolor="#D8D8D8" width="320" height="0" border="0" cellpadding="1" cellspacing="0">
   <tr height="40"><td align="right"> ชื่อ /นามสกุุล</td><td><input type="text" name="txtname" id="textname" value=""></td></tr>
   <tr height="40"><td align="right">ที่อยู่ </td><td><input type="text" name="txtaddress" id="textaddress" value=""></td></tr>
   <tr height="40"><td align="right">เลขที่บัตรประชาชน</td><td><input type="text" name="txtnumbercard" id="textnumbercard"value=""></td></tr>
   <tr height="40"><td align="right">ชื่อร้านค้า</td><td><input type="text" name="txtnameshop" id="textnameshop" value=""></td></tr>
    <tr height="40"><td align="right">โทรศัพท์ </td><td><input type="text" name="txtphon" id="textphon" value=""></td></tr>
    <tr height="40"><td align="right">E-mail </td><td><input type="text" name="txtemail" id="textemail" value=""></td></tr>
	<tr height="40"><td align="right">Username </td><td><input type="text" name="txtusername" id="textusername" value=""></td></tr>
	<tr height="40"><td align="right">Password </td><td><input type="text" name="txtpassword" id="textpassword" value=""></td></tr>
	<tr height="40"><td align="right">ยืนยัน Password </td><td><input type="text" name="txtpassword2" id="textpassword2" value=""></td></tr>
	<tr height="40"><td align="right">สิ่งที่ชอบ</td>
	<td><font size="2" color="#FF0000">คำตอบสำหรับลืมPassword</font><br><input type="text" name="txtyoulike" id="textyoulike" value=""></td></tr>
	<tr height="40"><td>&nbsp;</td><td align="left"><input type="submit" name="submit" value="ยืนยัน"></td></tr>
</table>
</form>
</div>

</body>
</html>
1. != ของคุณมีเว้นวรรค
2.  มี header ตัวนึงอยู่ใน tab javascript

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-03-08 15:16:32 By : Ex-[S]i[L]e[N]t
 


 

No. 6



โพสกระทู้ ( 125 )
บทความ ( 0 )



สถานะออฟไลน์


ได้แล้วครับ ขอบคุณครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-03-08 15:33:55 By : BABANGYAI
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : เช็คค่า passwordไม่ตรงกัน ยังไงครับ สงสัยโค้ดจะผิดไป
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 01
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่