Hello,
I would like to print from a database all the records that start with a letter between a and e and then f and j, etc.
The only way I can think of is:
$result = mysql_db_query("jc75513","SELECT * FROM websites WHERE name LIKE 'a%' ORDER BY category,name",$bp);
but seems a bit too long to do for each letter. Is there a faster way?
Chris