<?php $quotes[] = "Boys like hugs too."; $quotes[] = "Ooh! Train!"; $quotes[] = "La rue est a nous."; $quotes[] = "The future is unwritten."; if($all==1) { echo "<ul>"; for($i=0; $i<=count($quotes)-1; $i++) { echo "<li>".$quotes[$i]."</li>"; } echo "</ul>"; } else { srand ((double) microtime() * 1000000); $randomquote = rand(0,count($quotes)-1); echo $quotes[$randomquote]; } ?>
You need to create an account or log in to post comments to this site.