Skip to content

Instantly share code, notes, and snippets.

@ccaglayan
Created April 9, 2013 00:35
Show Gist options
  • Select an option

  • Save ccaglayan/5341913 to your computer and use it in GitHub Desktop.

Select an option

Save ccaglayan/5341913 to your computer and use it in GitHub Desktop.
<?php
require 'name_generator.php';
echo 'Random Name: '.name('boy');
?>
<?php
function name($type){
if($type == 'boy'){
$names = array('Brian','David','Caleb','Henry','Patrick','Erik','Limo');
}else{
$names = array('Juliana','Ory','Linda');
}
return $names[array_rand($names)];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment