<? function randQuote($numx) {
$randomnumber = $numx;
$quote[0] = 'blah';
(all the way to $quote[16])
return $quote[$randomnumber];
} ?>
<? echo randQuote(mt_rand(0,16)); ?>
this always just returns ONE quote (the same one, always)..
i even just did <? echo mt_rand(); ?> and it would only return one number all the time...
anyone have the same problem?