Hey,
I know theres something that does this but I can't remember what its called :S
I have this code that reads out numbers i.e. 1,2,3,4 etc.
But I want it to read out as 01,02,03,04 etc.
<?php
$i=0;
for($i = 1; $i < 32; $i++) {
echo '<option value="'.$i.'">'.$i.'</option>';
}
?>
Anyone jog my memory?
Thanks.