Thanks, and I wish your suggestion had worked. But it didn't work either: Here's what I got from PHPMyAdmin when I ran that query:
MySQL returned an empty result set (i.e. zero rows). (Query took 0.0789 sec)
SQL query:
SELECT *
FROM customers
WHERE First_Name LIKE '%Bob%'
LIMIT 0 , 30
The = doesn't work, the % doesn't work, I just can't seem to get a proper result from a query that uses a WHERE on that particular field of the table. (I can get full results from a "SELECT First_Name FROM customers " with no WHERE). There are times when you need to use a WHERE, for example in the case of looking up a customer record where more than 2 have the same last name. So I am really frustrated. . .