I am getting this error:
Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING' in /home/firstcty/firstcitymall-www/search_listings.php on line 22
When I run this search:
$sql = "SELECT * FROM $table_name WHERE keywords LIKE '%$search%';
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result))
{
$keywords = $row['keywords'];
$category = $row['category'];
$bus_name = $row['bus_name'];...
'$keywords' is line 22 and '$search' is what the user put in the search box.
What am I missing here? I'm new at this so I suppose quite a bit...
Thanks