I'm trying to get the results of the for loop like: 00001, 00002, 00003,
etc. but the result is not displaying 0
's: instead I get: 1, 2, 3,
etc.
This is the code:
$min = 00001;
$max = 00005;
for ($x = $min; $x <= $max; $x++) {
echo "$x ";
}