[PHP] Help need (Urgent)

2002-05-01 Thread Luiz Rafael Culik Guimaraes
Dear Friends I have an form that get the user info , and i need to send an email to the user . which is attached The problem , when I post the data, php dont see se variables. Can someone help Even if i try http://localhost/meu.php?[EMAIL PROTECTED]to=rafapass=ppuser=ruki the variables dont have

RE: [PHP] Help need (Urgent)

2002-05-01 Thread Steve Bradwell
How are you printing the vars?? like this? echo $des; -Steve -Original Message- From: Luiz Rafael Culik Guimaraes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 12:23 PM To: [EMAIL PROTECTED] Subject: [PHP] Help need (Urgent) Dear Friends I have an form that get the user

Re: [PHP] Help need (Urgent)

2002-05-01 Thread Philip Olson
Hi, In meu.php first do this: phpinfo(); And notice all the beautiful information within. Towards the botton you'll see a section called PHP Variables that will have something like _GET. All GET information will live in here ($_GET), So: print $_GET['des']; If you're trying $des and