|
|
| Home Search Help Back |
|
|
|
Welcome to AC Search a virtual website search engine. Our AC search program is a great way to quickly find the content u want from anime crave. By using key words you can search from regular content to anime media content. What are the advanteges of using AC Search?
Quickly find your prefered content Recieve organised listings of content Finding previusly unknowned material Great for new members to find content
So please feel free to try out our great new feature to Anime Crave. If you have any questions please view the Search Help page, or contact one of the staff members. |
|
| |
|
© Jon Cook 2004, All Rights Reserved AC Search Version 1.2 beta an Anime Crave Product |
|
}else{
$link = mysql_connect('localhost', 'ac_iuser', 'ipass')
or die('Could not connect: ' . mysql_error());
mysql_select_db('ac_search') or die('Could not select database');
$query = "SELECT * FROM search WHERE title_search LIKE '%$sString%'
OR type_search LIKE '%$sString%' OR desc_search LIKE '%$sString%'
ORDER BY title_search";
$result = mysql_query($query) or die("Query failed : " . mysql_error());
if ( mysql_affected_rows() == 0 ){
echo "
|
|
| Home Search Help Back |
|
| Search Results For: ".$sString." |
|
Sorry, your search expression
".$sString." was not found. Please Try your search again or try the Search Help page for search hints. |
";
}else{
echo "
|
|
| Home Search Help Back |
|
| Search Results For: ".$sString." |
|
";
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo "| ";
echo " |
|
";
echo "| ".$row["title_search"]." |
";
echo "| ".$row["type_search"]." |
";
echo "| ".$row["desc_search"]." |
";
echo " |
";
//$rowval=$row["desc_search"];
//$newstr=str_ireplace($sString,"".$sString."", $rowval);
//echo "| ".$newstr." |
";
}
}
echo " |
|
|
|
| End of Search Results |
|
© Jon Cook 2004, All Rights Reserved AC Search Version 1.2 beta an Anime Crave Product |
|
";
mysql_free_result($result);
}
?>