(no subject)

Jan 30, 2009 11:23

if($id < 10)
$id='000'.$id;
elseif($id < 100)
$id='00'.$id;
elseif($id < 1000)
$id='0'.$id;

(though technically I don't need that last elseif at the moment.)
Previous post Next post
Up