PHP - Matching search terms mysql_query
问题 im having issue with a php script that retrieves values from a database and see's which ones match an input term. I either get the resourceID #4 error or no response. Im basically trying to retrieve similar entries and of those similar entries show the name and date of their submission $input = mysql_real_escape_string($_POST["interest"]); $query1 = "SELECT name,interest_desc,date, MATCH(interest_desc) AGAINST('$input') AS score FROM interests WHERE MATCH(interest_desc) AGAINST('$input')