if the value (number or characters) you key in has nothing to do with the range of the random value you want, then we don't need the key in value.
no matter what value you key in, it will create a random number anyway. in theory, this random number should not have any relations with the value you key in, otherwise it is not random number.
srand ((double) microtime() * 1000000);
$yournumber = rand();
so use a different seed number, and use rand() to create random number.
hui