does anyone else have problems with this function?!
$number = rand(1, $count);
is there something wrong with that line? $count is already defined. $number always equals 1. i tried using mt_rand().
$number = mt_rand(1, $count);
$number is always equal to $count.
am i doing something wrong here? any help would be appreciated. thank you.
-phil