ช่วยหน่อยค่ะไม่รูจิง ๆ Fatal error: Call to undefined function mysq_query() in
//register.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>:::register:::</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.style1 {color: #FF0000}
-->
</style>
</head>
<body>
<form method="post" action="register2.php">
<table width="400" border="0" align="center">
<tr>
<td width="194" height="28">ชื่อ</td>
<td width="169" height="28" colspan="2"><input type="text" name="name_reg"> </td>
<td width="23"><span class="style1">*</span></td>
</tr>
<tr>
<td height="28">นามสกุล</td>
<td width="169" height="28" colspan="2"><input type="text" name="lastname_reg"></td>
<td height="28"><span class="style1">*</span></td>
</tr>
<tr>
<td height="28">ชื่ื่อในระบบ ::uername::</td>
<td height="28" colspan="2"><input name="user_reg" type="text"></td>
<td height="28"><span class="style1">*</span></td>
</tr>
<tr>
<td height="28">รหัสผ่าน ::password::</td>
<td width="169" height="28" colspan="2"><input name="pass_reg" type="text"></td>
<td height="28"><span class="style1">*</span></td>
</tr>
<tr>
<td height="1"><p>ที่อยู่ติดต่อได้</p></td>
<td width="169" height="1" colspan="2"><textarea name="address_reg" rows="3"></textarea></td>
<td height="1"><span class="style1">*</span></td>
</tr>
<tr>
<td height="2">เบอร์โทรศัพท์</td>
<td width="169" height="2" colspan="2"><input type="text" name="tel_reg"></td>
<td height="2"><span class="style1"></span></td>
</tr>
<tr>
<td height="6">อีเมลล์</td>
<td width="169" height="6" colspan="2"><input type="text" name="email_reg"></td>
<td height="6"><span class="style1">*</span></td>
</tr>
<tr>
<td height="13"> </td>
<td width="83" height="13">
<input type="Submit" value="Submit"></td>
<td width="84"><input type="Reset" value="Reset"></td>
<td height="13"> </td>
</tr>
</table>
<p> </p>
<p> </p>
</form>
</body>
</html>
//register2.php
<?
$name_reg=$_post[name_reg];
$lastname_reg=$_post[lastname_reg];
$user_reg=$_post[user_reg];
$pass_reg=$_post[pass_reg];
$address_reg=$_post[address_reg];
$tel_reg=$_post[tel_reg];
$email_reg=$_post[email_reg];
$date_reg=date("Y-m-d");
/*if ($name_reg==""or $last_reg==""or $user_reg==""or $pass_reg==""or $address_reg==""or $email_reg==""){
echo"กรุณากรอกข้อมูลให้ครบด้วยค่ะ";exit();
}
require"function.php";
if (!checkemail($email_reg)){
echo"รูปแบบอีเมลล์ไม่ถูกต้องค่ะ";exit();
}*/
include"connect.php";
$sql="select * from member where username='$user_reg' ";
$result=mysql_db_query($dbname,$sql);
$num=mysql_num_rows($result);
if($num>0){
echo"username ของคุณซ้ำค่ะกรุณาเลือกusernameอื่น";exit();
}
//$dbname="";
$sql="insert intomember('mem_id','f_name','l_name','username','password','address','phonr','email',reg_date')
values
('','$name_reg','$lastname_reg','$user_reg','$pass_reg','$address_reg','$tel_reg','$email_reg','$date_reg')";
$result=mysq_query($sql);
if($result){
echo"บันทึกข้อมูลเรียบร้อยค่ะ";
echo"<a href='index.html'>คลิกเพื่อเข้าระบบสมาชิก</a><br><br>";
}else{
echo"ไม่สามารถสมัครเป็นสมาชิกได้";
}
mysql_close();
?>
๙๙ ช่วยหน่อยค่ะ๙๙
Warning: include(connect.php) [function.include]: failed to open stream: No such file or directory in C:\AppServ\www\db_dinpun\register\register2.php on line 18
Warning: include() [function.include]: Failed opening 'connect.php' for inclusion (include_path='.;C:\php5\pear') in C:\AppServ\www\db_dinpun\register\register2.php on line 18
Warning: mysql_db_query() [function.mysql-db-query]: Access denied for user 'ODBC'@'localhost' (using password: NO) in C:\AppServ\www\db_dinpun\register\register2.php on line 20
Warning: mysql_db_query() [function.mysql-db-query]: A link to the server could not be established in C:\AppServ\www\db_dinpun\register\register2.php on line 20
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\db_dinpun\register\register2.php on line 21
Fatal error: Call to undefined function mysq_query() in C:\AppServ\www\db_dinpun\register\register2.php on line 30
Tag : - - - -
Date :
4 ธ.ค. 2550 16:14:56
By :
เครียด
View :
1745
Reply :
2
include(connect.php) มันไม่สามารถทำงานได้ คือ หาไฟล์ connect.php ไม่เจอครับ ถ้าใช้แบบนี้ ไฟล์ connect.php ต้องอยู่ใน โฟลเดอเดียวกันกับไฟล์ที่รัน
Date :
4 ธ.ค. 2550 16:34:32
By :
lozomac
ถูกต้องน่ะค๊าบบบ
Date :
5 ธ.ค. 2550 00:05:34
By :
กด
Load balance : Server 03