I have two dynamic PHP variables that return two letters based on an SQL query, and for this example I will use two random fixed letters:
$firstletter = "F";
$lastletter = "A";
I need to return all the letters between the first and last letter as an array so that I can skip them. For this example, it should return F, E, D, C, B, A
Any ideas how I can do this?
Ahmed source
share