B
Brandon
Guest
I need a name for my Content Management System im working on. If I like the name I will run the script below and it will pick one name from the many submitted. The winner gets 100 points.
Code:
<?php
###########################################################################
# #
# _____ _ #
# | ___| (_) #
# | |__ _ __ _ __ _ _ __ ___ __ _ #
# | __| '_ \| |/ _` | '_ ` _ \ / _` | #
# | |__| | | | | (_| | | | | | | (_| | #
# \____/_| |_|_|\__, |_| |_| |_|\__,_| #
# __/ | #
# |___/ # # #
# An Enigma Script, This script may not be used with out expressed #
# permission from Enigma (enigma3141@gmail.com) # # #
# #
###########################################################################
$name[] = 'First name';
$name[] = 'Second name';
$name[] = 'etc...';
srand ((double) microtime() * 1000000);
$random_number = rand(0,count($quotes)-1);
echo ($name[$random_number]);
?>