Another array question: how do I find the maximum number of items in an array?
for example:
$array['1'] = "hello";
$array['1'] = "nice to see you";
$array['1'] = "how are you";
$array['1'] = "how you doing";
and then find the max entry in the array, and choose one entry from that at random.
thanks KITTfan2K