$keywordQuery=ifx_query("SELECT DISTINCT title, desc, url FROM webSearch WHERE UPPER(desc) LIKE UPPER('%$query%')", $dbConnection);
if (!$keywordQuery) die("Query Failed");
$row=ifx_fetch_row($keywordQuery);
echo "There are ". ifx_num_rows($keywordQuery)." rows in the query";
I was wondering why the results from ifx_num_rows is giving me 1 rows returned. Is that because the query is pulling everything back as one lone string. Or am I not using this right.
Donnie