View Single Post
Old 10-04-2007, 03:56 PM   #2 (permalink)
Village Idiot
Wizard
Top Contributor 
 
Village Idiot's Avatar
 
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
Village Idiot is on a distinguished road
Default

change
PHP Code:
 $result mysql_query="SELECT * FROM resumes WHERE MATCH (body) AGAINST ('%search%')"
to
PHP Code:
 $result mysql_query("SELECT * FROM resumes WHERE MATCH (body) AGAINST ('%search%')"); 
mysql_query is a function
Village Idiot is offline  
Reply With Quote