puede probarlo creando un objeto mysqli como se describe aquí:http:// www.php.net/manual/en/class.mysqli.php
o simplemente así:
$db = new mysqli($hostname, $username, $password, $database);
y luego consultarlo así:
$result = $db->query('SQL HERE');
en su caso, el código de mysqli se vería así
$db = new mysqli("localhost","root","","searchengine");
$result = $db->query(sprintf(
"SELECT * FROM searchengine WHERE pagecontent LIKE '%s' LIMIT 0,%d",
'%'. mysqli_real_escape_string($_GET['term']) .'%',
$_GET['results'])
);
while($ser = mysqli_fetch_array($result)) {
echo "<h2><a href='$ser[pageurl]'>$ser[pageurl]</a></h2>";
}