ถามเรื่อง java script ตรวจสอบค่าว่างค่ะ ทำไมเวลาใส่ java script ที่ใช้ในการตรวจสอบค่าว่างแล้ว เมื่อกด submit แล้ว ทำไมค่า password
ทำไมเวลาใส่ java script ที่ใช้ในการตรวจสอบค่าว่างแล้ว เมื่อกด submit แล้ว ทำไมค่า password ที่กรอกถึงไม่ถูกบันทึกลงฐานข้อมูลคะ ค่าอื่นบันทึกหมดเลย ยกเว้น password
ไม่ทราบว่าต้องเขียน code อะไรเพิ่มอีกหรือเปล่าคะ
form.php
<html>
<head>
<script language="javaScript">
<!--
function checknull(str)
{
for(var i=0;i<str.length;i++){
if(str.charAt(i) != " "){
return false;
}
}
return true;
}
function validator()
{
if (checknull(document.form1.use_.value)){
alert ("กรุณากรอก Username");
document.form1.use_.focus();
return false;
}
return true;
}
//-->
</script>
</head>
<style type="text/css">
<!--
body,td,th {
color: #000000;
}
body {
background-color: #999999;
}
.style1 {
font-size: 24px;
font-weight: bold;
}
-->
</style>
<body>
<form name="form1" method="post" action="add2.php" onsubmit="return validator()" >
<p align="center"><img src="picture/image001.gif" width="833" height="176"></p>
<p align="center" class="style1">Register System </p>
<table width="39%" border="1" align="center" cellpadding="7" cellspacing="1" bgcolor="#99CCFF">
<tr>
<td width="26%"><strong>Username</strong></td>
<td width="74%"><input name="use_" type="text" id="use_"></td>
</tr>
<tr>
<td><strong>Password</strong></td>
<td><input name="pas_" type="password" id="pas_"></td>
</tr>
<tr>
<td><strong>Name</strong></td>
<td><input name="name" type="text" id="name"></td>
</tr>
<tr>
<td><strong>E-mail</strong></td>
<td><input name="email" type="text" id="email"></td>
</tr>
<tr>
<td><strong>Address</strong></td>
<td><input name="address" type="text" id="address"></td>
</tr>
<tr>
<td><strong>Tel.</strong></td>
<td><input name="tel" type="text" id="tel"></td>
</tr>
</table>
<p align="center">
<input type="submit" name="Submit" value="Regis">
<input type="reset" name="Submit2" value="Cancel">
</p>
</form>
</body>
</html>
อันนี้ add2.php
<?
$host="localhost";
$user="";
$pass="";
$db="mydatabase";
$tb="member";
mysql_connect( $host,$user,$pass) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
mysql_db_query($db,"INSERT INTO $tb (use_,pas_, name, email, address, tel) values ('$use_', '$pas_', '$name', '$email', '$address', '$tel')") or die (mysql_error());
echo "<br><br><center>สวัสดี!! คุณ $name <br> ";
echo "Username ของคุณคือ $use_ <br> ";
echo "Password ของคุณคือ $pas_</center><br> ";
mysql_close();
?>
<center><a href="index.php"><font color="green">กลับไปหน้าหลักสื่อการเรียนการสอน</font></a> |||
<a href="loginlist.php"><font color="red">เข้าสู่ระบบ</font></a></center>Tag : - - - -
Date :
28 ส.ค. 2551 13:10:48
By :
fish
View :
1547
Reply :
3
ลอง echo ที่หน้า add2.php ก่อนที่จะ INSERTดูค่าว่าได้ส่งข้อมูลมารึปล่าว
ลองดูครับ
Date :
28 ส.ค. 2551 15:57:52
By :
bom
zzzzz
Date :
2008-12-30 08:41:52
By :
xxxxxxx
Load balance : Server 04