I dopn't understand what you asking about (read: I don't bother to read through all clutter to figure it out), but you may want to have a look at: http://nl.php.net/manual/en/language.variables.external.php -----Original Message----- From: Ciro To: php-windows@lists.php.net Sent: 2004-02-07 19:40 Subject: problems with variables 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 -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php