i know how to query a database to look for certain files starting with certain letters but how do i do it, to work with numbers.
e.g
to show the waypoints begining with letters
i would query
$sql = "select * from waypoints where type = '$cat' AND name LIKE 'cs_$letter%'";
so it would look for files beging with cs_<then the letter>
but how do i do it with numbers
thanks in advance for any help
🙂