Random quotes
<?php $quotes=array( 'Neo', 'Morpheus', 'Trinity', 'Cypher', 'Tank' ); echo $quotes[rand(0,sizeof($quotes)-1)]; ?>
DZone Snippets > BlackHalt > php
12390 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
BlackHalt http://art.toooools.com/
<?php $quotes=array( 'Neo', 'Morpheus', 'Trinity', 'Cypher', 'Tank' ); echo $quotes[rand(0,sizeof($quotes)-1)]; ?>