Hi,
i've looked through the hp manual and cant find a function for this... is it possible to echo out double figures instead of single in php? for exmaple
this lists as 1,2,3,4,5,6,7,8 ,9,10 and i want it to be 01,02,03,04,05, 06,07,08,09
is this possible?
i've looked through the hp manual and cant find a function for this... is it possible to echo out double figures instead of single in php? for exmaple
Code:
for($i=00;$i<23;$i++){
echo '<option value="'.$i .'">'.$i .'</option>';
}
is this possible?
Comment