我從教程中選取了該代碼並對其進行了編輯,使其適合我的需要。致命錯誤,未找到類
<?php
//if we got something through $_POST
if (isset($_POST['search'])) {
// here you would normally include some database connection
include('config2.php');
$db = new db();
// never trust what user wrote! We must ALWAYS sanitize user input
$word = mysql_real_escape_string($_POST['search']);
// build your search query to the database
$sql = "SELECT name FROM $tbl_name WHERE name LIKE '%" . $word . "%'";
// get results
$row = $db->select_list($sql);
if(count($row)) {
$end_result = '';
foreach($row as $r) {
$result = $r['title'];
// we will use this to bold the search word in result
$bold = '<span class="found">' . $word . '</span>';
$end_result .= '<li>' . str_ireplace($word, $bold, $result) . '</li>';
}
echo $end_result;
} else {
echo '<li>No results found</li>';
}
}
?>
當我運行代碼,我收到此錯誤:
Fatal error: Class 'db' not found in /home/peltdyou/public_html/do_search.php on line 6
我很新的PHP所以任何人都可以擺脫一些光照射到我的問題..
UPDATE:
<?php
class db {
function __construct()
{
global $dbh;
if (!is_null($dbh)) return;
$dbh = mysql_pconnect(DB_HOST, DB_USER, DB_PASSWORD);
mysql_select_db(DB_NAME);
mysql_query('SET NAMES utf8');
}
function select_list($query)
{
$q = mysql_query($query);
if (!$q) return null;
$ret = array();
while ($row = mysql_fetch_array($q, MYSQL_ASSOC)) {
array_push($ret, $row);
}
mysql_free_result($q);
return $ret;
}
}
?>
這是db.php代碼..我想通過替換這個我自己的config2.php文件我可以讓它連接到我的數據庫。顯然不
你忘了加入'db.php'嗎?你缺少一個定義類「db」的包含文件。 – Ryan
PHP告訴你它找不到數據庫類。可以發現,這可能是因爲它沒有被自動加載到你的應用程序中,路徑錯誤或者它不存在。你如何包括數據庫類。你有其他的代碼,你可以發佈? – Haroon
不知道你的配置文件包含什麼,但你*可以*包括兩個分開(也許應該,因爲它們在功能上不同) – GDP