how can I make it so only data with first letter "a" be displayed?
Printable View
how can I make it so only data with first letter "a" be displayed?
mysql_query("select * from tableName where fieldName LIKE 'a%'");
what does a% mean?
begins with a anything can follow
cool thanks :)