On one page I have this...
<a href="go.php?q_name=BMW">
It sends me to a page that has this sql statement.
$sql1 = "SELECT * FROM cars WHERE car_name = '{$q_name}'";
This returns NOTHING... so I changed the sql statement to:
$sql1 = "SELECT * FROM cars WHERE car_name = 'BMW'";
Now that works.. what am I doing wrong??