show/hide this revision's text 3 added 969 characters in body; added 59 characters in body
<?php
  function random_number(){
      return 4; // return generated number
                // guaranteed to be random
  }
  ?>

All joking aside, you're getting into a philosophical question of what is "random" or what is "best". Ideally you'd want your random numbers to have few patterns in them over the course of your procedure. Generally system time is used as the seed, but I've also used the previous random number as the seed, the previous random numberth ago as the seed. The problem is, with a powerful enough computer and full knowledge of the hardware running, and generator function, you would be able to predict the entire set of numbers generated. Thus if you had a powerful enough computer (some people put God into this category) that knew all possible variables and functions of the universe you would then be able to predict every event that happened or will happen. Most random number generators are fine on their own but if you know someone who can see the patterns, more likely they are like the guy in Beautiful Mind and you should get them checked into a clinic.

By popular demand :D

show/hide this revision's text 2 cite your source; added 25 characters in body
<?php
  function random_number(){
      return 4; // return generated number
                // guaranteed to be random
  }
  ?>

alt text

show/hide this revision's text 1
<?php
  function random_number(){
      return 4; // return generated number
                // guaranteed to be random
  }
  ?>