hi, i'm a new member from italy. just a simple question: why i have this output with my php script?? SCRIPT <html> <head> <title>Entering Information into a Form</title> </head> <form action="form_results.php3" method="GET"> <p>First Name: <input type="text" name="first_name"> <br>Last Name: <input type="text" name="last_name"> <br>Address: <input type="text" name="address"> <br>City: <input type="text" name="city"> <br>State: <input type="text" name="state"> <br>Zip: <input type="text" name="zip"> <br>Home Phone: <input type="text" name="home_phone"> <p><input type="submit" name="Submit" value="Submit"> <input type="Reset"> </form> </body> </html> OUTPUT form_result.php3 Below are the results of your Form Submission First Name: $first_name\n"); print(" Last Name: $last_name\n"); print(" Address: $address\n"); print(" City: $city\n"); print(" State: $state\n"); print(" Zip: $zip\n"); print(" Home Phone: $home_phone\n"); ?> -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php