|
|
|
soude มีปัญหาครับฃ่วยผมที Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource |
|
|
|
|
|
|
|
$rsmember = mysql_query($query_rsmember, $conn) or die(mysql_error());
ลองเปลี่ยนเป็น
$rsmember = mysql_query($query_rsmember) or die(mysql_error());
ดูครับ
|
|
|
|
|
Date :
19 ก.พ. 2551 05:33:04 |
By :
neostream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วบรรทัดบนจะแก้ไข้อย่างไรคับ
เพราะมัน error 2 บรรทัดครับ
|
|
|
|
|
Date :
19 ก.พ. 2551 10:28:43 |
By :
jony |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mysql_select_db($database_conn, $conn);
รูปแบบมันถูกต้องแล้วครับ ต้องไปดูว่าตัวแปร $database_conn กับ $conn ส่งค่ามาถูกต้องหรือเปล่า
ตัวอย่าง
/* Set connection to database */
$host = "localhost";
$user = "root";
$pass = "xxxx";
$dbname = "test";
$conn = mysql_connect($host, $user, $pass);
if(!$conn){
die('Could not connect : ' . mysql_error());
}else{
$db_select = mysql_select_db($dbname, $conn);
if(!$db_select){
die('Could not select database : ' . mysql_error());
}
}
mysql_query("SET NAMES 'tis620'"); //สำหรับ mysql 5.0+
$sql = "select .....................";
$sql_query = mysql_query($sql);
ประมาณนี้ครับ
|
|
|
|
|
Date :
19 ก.พ. 2551 10:56:15 |
By :
neostream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mysql_select_db(): supplied argument is not a valid MySQL-Link resource in C:\AppServ\www\product\insert.php on line 14
|
|
|
|
|
Date :
2009-09-13 13:35:06 |
By :
x |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองทำแบบนี้ดูตรับ
$host = "localhost";
$user = "yourname";
$pass = "yourpass";
$conn = @mysql_connect($host,$user,$pass);
mysql_select_db($dbname,$conn);
|
|
|
|
|
Date :
2010-06-15 20:46:44 |
By :
dk_antikorn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|