Geuder's Name Generator
A simple random name generator to inspire you into finding a new trademark or brand name.
Click on New Names below the list to hav the script generate a new batch.
=======================
function getletter ($t)
{
$z="AEIOU"; // Start word
$B = ""; // Empty container
do
{
$A = chr(66 + rand(0,24));
}
while ((rand(0,10) > 7) && ($A == 69 || $A == 73 || $A == 79 || $A == 85));
if ($t == 2 || $t == 5 || $t == 7)
{
$B = $z[rand(0,4)];
}
if (ord($B) != 0)
{
return $B;
}
else
{
return $A;
}
}
//
//
// Start of main part of code
// En idé på utbyggnad är att erbjuda Consonant-shuffle (och/eller Vokal-) på ett eller alla de slumpade orden.
// DVS rotera eller slumpa runt vokaler eller konsonanter till kanske ett bättre namn.
//
$noow=15; // Number of words per page
$nooc=5; // Number of Chars per word
$coffset=2; // Random offset length
$wordlist[$noow]; //Array of words per page
for($h=1; $h<$noow; $h++) // Words loops
{
$word=""; // Local word container
for($t=1; $t<($nooc+rand(0,$coffset)); $t++) // Char per word loop
{
$word.=getletter($t);
}
// echo $word;
// echo "
";
$wordlist[$h]=$word;
}
echo "
";
echo "";
?>
=======================
If you have suggestions of improvments email me!
The script was inspired by the monster name generation program in "Creating Adventure Programs On Your Computer" written by Nelson and Hartnell.
Feel free to try to register any name generated here with any registration authority you please. Geuder.se does not guarentee that the names generated here are not already registred.
include "/home/html/geuder.com/googleanalytics_geuder.inc"
?>