Dysan Posted December 14, 2007 Share Posted December 14, 2007 How do I format a number field to display 000001 instead of just 1? Quote Link to comment Share on other sites More sharing options...
Northern Flame Posted December 14, 2007 Share Posted December 14, 2007 what exactly do you plan to use the number for? and how will you get this number (post data, pre-defined, etc) there are ways to do this, but it depends on certain information Quote Link to comment Share on other sites More sharing options...
kenrbnsn Posted December 14, 2007 Share Posted December 14, 2007 I would use the sprintf() function: <?php $num = 1; echo sprintf("%06d",$num) . "<br>\n"; ?> Ken Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.