@Kaze: Thanks for the help! To my dismay, I was a little more off than I thought. My array skills look like they need touching up somewhat. The Bubble Sorting was something I figured needed to be employed, I just needed to hear it from someone else. After all, we learned methods to use instead of bubble sorting, so why not use the supposedly defunct method for the assignment? hehheh! I really appreciate your guidence, wise one! As for your cookie... <?php $user = $_POST['user']; $color = $_POST['color']; $self = $_SERVER['PHP_SELF']; if( ( $user != null ) and ( $color != null ) ) { setcookie( "firstname", $user , time() + 86400 ); // 24 hours setcookie( "fontcolor", $color, time() + 86400 ); header( "Location:cookie2.php" ); exit(); } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"> <title>Stuff by tedd</title> </head> <body> <h1>tedd's cookie stuff</h1> <hr> <form action ="<?php echo( $self ); ?>" method = "post"> Please enter your first name: <input type = "text" name = "user"><br><br> Please choose your favorite font color:<br> <input type = "radio" name = "color" value = "Red">Red <input type = "radio" name = "color" value = "Green">Green <input type = "radio" name = "color" value = "Blue">Blue <br><br> <input type = "submit" value = "submit"> </form> <br/> <hr> </body> </html> </html>Thanks again! I owe ya one!