The Absolute Shortest 4 Digit PIN


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <? for($i=0; $i < 10000; $i++) echo ($i != 9999 ? substr(('0000'.$i), -4).', ' : substr(('0000'.$i), -4).''); ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.