RE: [PHP] Add a leading zero

2003-09-24 Thread chris . neale
EMAIL PROTECTED] Subject: Re: [PHP] Add a leading zero www.php.net/str_pad Shaun wrote: > Hi, > > How can i add a leading zero to the first result of this loop so that i get > 00, 15, 30, 45? > > > $i = 0; > while ($i <= 45){ >

RE: [PHP] Add a leading zero

2003-09-24 Thread chris . neale
Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Add a leading zero www.php.net/str_pad Shaun wrote: > Hi, > > How can i add a leading zero to the first result of this loop so that i get > 00, 15, 30, 45? > > > $i = 0; > while ($i <

Re: [PHP] Add a leading zero

2003-09-24 Thread Marek Kilimajer
www.php.net/str_pad Shaun wrote: Hi, How can i add a leading zero to the first result of this loop so that i get 00, 15, 30, 45? '.$i.''; $i+=15; } ?> Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/uns

[PHP] Add a leading zero

2003-09-24 Thread Shaun
Hi, How can i add a leading zero to the first result of this loop so that i get 00, 15, 30, 45? '.$i.''; $i+=15; } ?> Thanks for your help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php