Hi,
Is there a substitute/workaround for the Visual Basic command FORMAT.
I wish to increment number from 1 to xx, but it must maintain the 2-digit format, ie: 01>02>03>04>05>06>07>08>09>10>xx etc.
Any ideas
Regards.
See the manual regarding printf(), sprintf(), and number_format().
what about:
if ($i<10) { $i = "0$i"; }