Hello pros,
I have a simple search running on my site that looks like this:
$sql = "SELECT * FROM Film WHERE title LIKE '%$searchString%'";
$res = mysql_query( $sql );
$arr = mysql_fetch_row( $res );
{
echo "$arr[0]<br>$arr[1]<br>$arr[2]<br>$arr[3]<br>$arr[4]<br>$arr[5]<br>$arr[6]";
}
Now, when I submit a query through a form, it only returns the first value it finds!
How do I get it to find more then one value?
Thanks in advance!