Results 1 to 2 of 2

Thread: Random numbers generator

  1. #1
    Join Date
    Oct 2008
    Posts
    10

    Random numbers generator

    Hi, I need a script that would make random numbers appear when the page loads. In that format

    xxx-xxx-xxxx-xxx-xxx-xxxx

    x being between 0 and 9.

    how do I do that?

    thanks

  2. #2
    Join Date
    May 2008
    Location
    Canada
    Posts
    45
    Quote Originally Posted by frenchboy View Post
    Hi, I need a script that would make random numbers appear when the page loads. In that format
    xxx-xxx-xxxx-xxx-xxx-xxxx
    x being between 0 and 9.
    how do I do that?
    thanks
    Code:
    $a = rand(100,999);
    $b = rand(100,999);
    $c = rand(1000,9999);
    $d = rand(100,999);
    $e = rand(100,999);
    $f = rand(1000,9999);
    
    $code = $a.'-'.$b.'-'.$c.'-'.$d.'-'.$e.'-'.$f;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •