I really want to manipulate through to get some set of number ranges....
my code is working fine at the moment but the out put is what i have problem with.
i want to echo some thing like 00/00 , 00/01 , etc
but my code is giving me 0/0, 0/1, 0/2, etc
how do i go about this???
This is my code
<?php
foreach (range(00, 99) as $no2) {
foreach (range(00, 99) as $no3) {
echo $no2 . "/" . "$no3</br>";
}
}
?>