Is there a way to retrieve info from the MySQL database where i want it to search for info that starts with !@$&* without typing them all out?
Same goes for numbers, are there a way to have php query mysql for fields that start with 0123456789 and without typing this long query
"Field LIKE '1%' OR Field LIKE '2%' OR Field LIKE '3%' OR Field LIKE '4%' and so on... OR Field LIKE '9%'"
is there a more efficient way to do this? like in string manipulation where we have [0-9][a-z][A-Z]...?
Thanx.