I have picked up this code from a tutorial and have edited it make it suitable for my needs.
<?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>';
}
}
?>
I am getting this error when I run the code:
Fatal error: Class 'db' not found in /home/peltdyou/public_html/do_search.php on line 6
I am very new to PHP so could anyone shed some light onto my problem..
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;
}
}
?>
This is the db.php code.. I thought by replacing this with my own config2.php file I could get it to connect to my database.. Obviously not
I think I found the sample script you used, and in it, they say:
In the example, the db.php is not described, assuming that you have such a database file that you would use. A little further searching, I found this database class, which they call “database.php”, but you could easily use it for the code that you’re trying work with.