Noobie looking for a simple php script that will display a random text selection from a group of 3 or 4 choices (or perhaps more) and does not use lots of server resources. Thanks
<?php $phrases = array( 'text 1', 'text 2', 'text 3', 'text 4' ); $phrase = $phrases[array_rand($phrases)]; echo $phrase; ?> PHP: