Re: [PHP] HTML Get POST forms

2002-07-08 Thread Jason Wong
Varsha Agarwal said: > Hi, > I want to create a simple form and reteive the data > and print it. I have done the following in Foo.php. > > > *Name: > *Email : > > > Note: * fields are necessary. >print $_POST[ 'username' ]; > print $_REQUEST[ 'username' ]; > >

Re: [PHP] HTML Get POST forms

2002-07-08 Thread Analysis & Solutions
On Mon, Jul 08, 2002 at 08:06:27PM -0700, Varsha Agarwal wrote: > > The browser gives me error that undefined index > 'usename'. Can anyone tell me what could be wrong as i > am very new to HTML and PHP. I'll bet this is happening the first time you view the page. That's happening because you

[PHP] HTML Get POST forms

2002-07-08 Thread Varsha Agarwal
Hi, I want to create a simple form and reteive the data and print it. I have done the following in Foo.php. *Name: *Email : Note: * fields are necessary. The browser gives me error that undefined index 'usename'. Can anyone tell me what could be wrong as i am very new to HTM