รบกวนตอบหน่อยว่า ERROR แบบนี้เกิดได้จากอะไรบ้าง มีวิธีแก้อย่างไร
<? require_once("../includes/function.php");
define('URL_BACK',"register_form.php");
define('URL_GOTO',"login_form.php");
if (isset($_POST["btnClear"])) {
unset($_SESSION["arrData"]);
process_message("ล้างข้อความในแบบฟอร์มสมัครสมาชิกแล้ว", URL_BACK); exit();
} else {
$_SESSION["arrData"]=$_POST;
}
if ( empty($_POST["txtUser"]) || empty($_POST["txtPwd"]) || empty($_POST ["txtConfirmPwd"]) || empty($_POST["txtEmail"]) ) {
process_message( "ต้องกรอก \"ข้อมูลสำหรับเข้าระบบ\" ให้ครบ", URL_BACK ) ;
}elseif ($_POST["selQuestion"]=="0" || empty($_POST["txtAnswer"])) {
process_message("ต้องกรอกข้อมูล<br/>\"กรณีลืมรหัสผ่าน\"ให้ครบ",URL_BACK);
}elseif (valid_user($_POST["txtUser"])===false) {
process_message("ชื่อผู้ใช้ไม่ถูกต้องตามเงื่อนไขที่กำหนด",URL_BACK);
}elseif (strcmp($_POST["txtPwd"],$_POST["txtUser"])==0) {
process_message("รหัสผ่าน ต้องไม่เหมือนกับ ชื่อผู้ใช้",URL_BACK);
} elseif (valid_pwd($_POST["txtPwd"])===false) {
process_message("รหัสผ่านไม่ถูกต้องตามเงื่อนไขที่กำหนด",URL_BACK);
} elseif ( strcmp($_POST["txtPwd"], $_POST["txtConfirmPwd"]) != 0 ) {
process_message( "กรอกรหัสผ่าน และยืนยันรหัสผ่านไม่ตรงกัน", URL_BACK ) ;
} elseif (valid_email($_POST["txtEmail"])===false) {
process_message("อีเมล์ไม่ถูกต้อง",URL_BACK);
} else {
include "connect.php";
$sql="select * from tblmember where mUserName ='".$_POST["txtUser"]."' ";
$resultSql=mysql_db_query($dbname,$sql);
$rows=mysql_num_rows($resultSql);
if ($rows == 1) {
$msg = "ชื่อผู้ใช้ " . $_POST["txtUser"] . " ซ้ำ กรุณาใช้ชื่ออื่น" ;
process_message( $msg, URL_BACK ) ;
} else {
$insertMember="INSERT INTO tblmember (mUserName,mPassword,mEmail,mQuestion,mAnswer)";
$insertMember .="values ('".trim($_POST["txtUser"])."',PASSWORD('".trim($_POST["txtPwd"])."'),
'".trim($_POST["txtEmail"])."','".$_POST["selQuestion"]."','".trim($_POST["txtAnswer"])."')";
$resultSql=mysql_db_query($dbname,$insertMember);
$affected=mysql_affected_rows($dbname); //* บรรทัดนี้ที่ ERROR
if ( $affected == 1 ) {
if ( $_POST["selProvince"] != "0" ) {
$province = $_POST["selProvince"] ;
}
$insertDetail = "insert into tblmemberdetail (mUserName,mdName,mdSurname,mdAddress,mdDistrict,mdProvince,mdZipcode,mdPhone)";
$insertDetail .="values ('".trim($_POST["txtUser"])."','".$_POST["txtName"]."','".$_POST["txtSurname"]."','".$_POST["txtAddress"]."','".$_POST["txtDistrict"]."','".$province."','".$_POST["txtZipcode"]."','".$_POST["txtPhone"]."')";
$resultDetail=mysql_db_query($dbname,$insertDetail);
$affectedDetail=mysql_affected_rows($dbname);
mysql_close();
if ($affectedDetail==1) {
unset($_SESSION["arrData"]);
process_message("ยินดีต้อนรับสมาชิกใหม่",URL_GOTO);
}
}else{
process_message("เกิดข้อผิดพลาดของระบบ <br/>ไม่สามารถบันทึกข้อมูลลงฐานข้อมูลได้ในขณะนี้",URL_BACK);
}
}
}
?>
นีอยากทราบว่าถ้าเกิด ERROR: แบบนี้ Warning: mysql_affected_rows(): supplied argument is not a valid MySQL-Link บรรทัดที่ระบุไว้ข้างบนน่ะค่ะ มันเกิดจากรัยหรอค่ะพี่ๆๆ แร้วมีวิธีสังเกตหรือว่าแก้ไขอย่างไรบ้างค่ะTag : - - - -
Date :
2010-01-13 13:54:38
By :
hatinee
View :
974
Reply :
1
Code (PHP)
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('mydb');
/* Update records */
mysql_query("UPDATE mytable SET used=1 WHERE id < 10");
printf ("Updated records: %d\n", mysql_affected_rows());
mysql_query("COMMIT");
?>
Note: Transactions
If you are using transactions, you need to call mysql_affected_rows() after your INSERT, UPDATE, or DELETE query, not after the COMMIT.
ref : https://www.thaicreate.com/php-manual/function.mysql-affected-rows.html
Date :
2010-01-13 14:06:51
By :
Sek-Artdrinker
Load balance : Server 01