I am having a bit of a problem with getting a random number out of this, must be too long behind the computer, any help much appreaciated.
$anniversary_callers = "2,21,27,24,14,18,22,16,29,28,10,95,23,12,19,25";
$anniversary_callers1 = str_replace(",", "\",\"", $anniversary_callers);
print "$anniversary_callers1<br>";
$input = array($anniversary_callers1);
$pickOne = array_rand($input, 1);
$aRandomSelection = $anniversary_callers1[$pickOne ];
print "$aRandomSelection<br>";