未定义的变量!该怎么解决
Jun 13, 2016 pm 01:27 PM
未定义的变量!
源代码!
function OpenDB($SQL){
$link = mysql_connect($server_DB, $user_DB, $password_DB)or die("Could not connect:".mysql_error());
mysql_select_db($database_DB, $link);
$result = mysql_query($SQL);
return $result;
}
OpenDB("select * from config WHERE ID = 1");
$row = mysql_fetch_array($result);
echo $row["className"];
错误提示!
Notice: Undefined variable: result in E:\wwwroot\include\config.int.php on line 36
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in E:\wwwroot\include\config.int.php on line 36
------解决方案--------------------
$result=OpenDB("select * from config WHERE ID = 1");
$row = mysql_fetch_array($result);

熱門文章

熱門文章

熱門文章標籤

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

如何修復 MySQL 8.4 上的 mysql_native_password 未載入錯誤
