Even Shorter 4 digit PIN's


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



Copy this code and paste it in your HTML
  1. <?
  2. echo '0000';
  3. for($i = 1; $i < 10000; $i++)
  4. echo ', '.str_repeat("0",(4-strlen($i))).$i;
  5. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.