The Code:<div class="Script"> <?php /*Set This File => Code_View.php*/ $thisfile = "Random_Name_Generator.php"; echo "<input type='submit' name='submit' value='Refresh Page' onclick='window.location.reload();'>"; require('header.meta');?> <?php echo "<h2>Random Name Generator</h2>"; function Random_Name_Generator() { $first = array( "Adam","Brenda","Charlie","Dawn","Erin","Frank","Susan","Bill","Roger","Mary"); $middle = array( "","A.","B.","C.","D.","E.","F.","G.",""); $last = array( "Albright","Bowers","Chesterly","Daniels","Erikson","Fredricks","Gould","Harris"); $randn = array_rand($first); $radn2 = array_rand($middle); $rand3 = array_rand($last); echo "Name: $first[$randn] $middle[$radn2] $last[$rand3]</p>"; } Random_Name_Generator(); ?> <?php /*Insert Code View*/ include('Code_View.php');?> </div>