AviNahum Posted December 11, 2008 Share Posted December 11, 2008 hey (sorry for very poor English... i from Israel) i tried to make a search engine to my website... but i got a problem... when i typing something in English its works... but my web in Hebrew (i from Israel) and when i typing something in Hebrew its don't find anything... and its don't showing any errors... this is my php code: $search=$_GET['search']; $where_to_search=$_GET['where_to_search']; if($where_to_search=='downloads') { $query="SELECT * FROM `web_downloads` WHERE title LIKE '%$search%' AND depiction LIKE '%$search%' ORDER BY id DESC"; $relust=mysql_query($query); while ($r=mysql_fetch_assoc($relust)) { if ((mysql_num_rows($relust))==0) { echo "no results"; } else { echo $r['title']; } } } elseif ($where_to_search=='articles') { $query="SELECT * FROM `web_articles` WHERE title LIKE '%$search%' AND depiction LIKE '%$search%' ORDER BY id DESC"; $relust=mysql_query($query); while ($r=mysql_fetch_assoc($relust)) { if ((mysql_num_rows($relust))==0) { print "no results"; } else { echo $row['title']; } } } thanks! Link to comment https://forums.phpfreaks.com/topic/136465-problem-with-my-search-engine/ Share on other sites More sharing options...
Mr_J Posted December 11, 2008 Share Posted December 11, 2008 can u provide the link please Link to comment https://forums.phpfreaks.com/topic/136465-problem-with-my-search-engine/#findComment-712287 Share on other sites More sharing options...
AviNahum Posted December 11, 2008 Author Share Posted December 11, 2008 http://avi.one-serv.net/ms/ this is the link but again it's in hebrew Link to comment https://forums.phpfreaks.com/topic/136465-problem-with-my-search-engine/#findComment-712393 Share on other sites More sharing options...
redarrow Posted December 11, 2008 Share Posted December 11, 2008 What does Hebrew sentence look like please. You will need to use mysql_real_ecsape_string() i guess Link to comment https://forums.phpfreaks.com/topic/136465-problem-with-my-search-engine/#findComment-712399 Share on other sites More sharing options...
AviNahum Posted December 11, 2008 Author Share Posted December 11, 2008 and do you know where i can find a free php search engine script? Link to comment https://forums.phpfreaks.com/topic/136465-problem-with-my-search-engine/#findComment-712413 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.