Re: [PHP] newbie help, pressing the submit button returns nothing(solved)

2003-04-04 Thread David McGlone
On Friday 04 April 2003 01:15 pm, you wrote: > > > >> >Welcome ! > > > > Thank you all for helping me, I have finally figured out why the name > > wasn't displaying. from the line above, "$applicant" should have been > > "applicant". > > Are you sure you're using PHP? I guess so, here's what worked

RE: [PHP] newbie help, pressing the submit button returns nothing(solved)

2003-04-04 Thread John W. Holmes
> > >> >Welcome ! > > Thank you all for helping me, I have finally figured out why the name > wasn't displaying. from the line above, "$applicant" should have been > "applicant". Are you sure you're using PHP? ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get y

Re: [PHP] newbie help, pressing the submit button returns nothing(solved)

2003-04-04 Thread David McGlone
On Friday 04 April 2003 12:57 pm, Centras wrote: > Friday, April 4, 2003, 6:47:38 PM, you wrote: > > DM> On Friday 04 April 2003 08:54 am, Eugene Mah wrote: > >> At 08:24 04-04-03 -0500, you wrote: > >> >On Friday 04 April 2003 07:43 am, Petre Agenbag wrote: > >> > > Your problem is not with PHP bu

RE: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread John W. Holmes
e [mailto:[EMAIL PROTECTED] > Sent: Friday, April 04, 2003 11:48 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] newbie help, pressing the submit button returns nothing > > On Friday 04 April 2003 08:54 am, Eugene Mah wrote: > > At 08:24 04-04-03 -0500, you wrote: > > &

Re: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread David McGlone
On Friday 04 April 2003 12:23 pm, Ford, Mike [LSS] wrote: > > -Original Message- > > From: Centras [mailto:[EMAIL PROTECTED] > > Sent: 04 April 2003 18:58 > Well, that's a fairly braindead suggestion for two reasons: > > (1) If he needs $_POST['applicant'], then he'll need $_POST['submit']

Re: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread David McGlone
On Friday 04 April 2003 08:54 am, Eugene Mah wrote: > At 08:24 04-04-03 -0500, you wrote: > >On Friday 04 April 2003 07:43 am, Petre Agenbag wrote: > > > Your problem is not with PHP but with basic HTML. > > > Your tag needs an action="www.somepage.com" in order to "do" > > > something. With PHP,

RE: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread John Coggeshall
Chances are register_globals is off... Try using $_POST['UserName'] instead of $UserName John -~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~- John Coggeshall john at coggeshall dot org http://www.coggeshall.org/ -~=~--~=~--~=~--~=~--~=~--~=~--~=~--~=~--~

Re: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread Eugene Mah
At 08:24 04-04-03 -0500, you wrote: On Friday 04 April 2003 07:43 am, Petre Agenbag wrote: > Your problem is not with PHP but with basic HTML. > Your tag needs an action="www.somepage.com" in order to "do" > something. With PHP, you can call the same page back onto itself. Hi Petre, Thanks for the

Re: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread David McGlone
On Friday 04 April 2003 07:43 am, Petre Agenbag wrote: > Your problem is not with PHP but with basic HTML. > Your tag needs an action="www.somepage.com" in order to "do" > something. With PHP, you can call the same page back onto itself. Hi Petre, Thanks for the reply, I have actually tried this

RE: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread John W. Holmes
-Original Message- > From: Petre Agenbag [mailto:[EMAIL PROTECTED] > Sent: Friday, April 04, 2003 7:43 AM > To: David McGlone > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] newbie help, pressing the submit button returns nothing > > Your problem is not with PHP but with basic

Re: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread Burhan Khalid
Petre Agenbag wrote: Your problem is not with PHP but with basic HTML. Your tag needs an action="www.somepage.com" in order to "do" something. With PHP, you can call the same page back onto itself. On Fri, 2003-04-04 at 14:37, David McGlone wrote: Hi all, I have a real quick question. I'm tryin

RE: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread John W. Holmes
> Hi all, I have a real quick question. I'm trying to learn PHP and right > now im > working with variables, anyway, I cannot get the code below to work > correctly, could anyone help me out here the problem is, when you submit > the > name, the name will not appear at all. > > > > > > Name:

Re: [PHP] newbie help, pressing the submit button returns nothing

2003-04-04 Thread Petre Agenbag
Your problem is not with PHP but with basic HTML. Your tag needs an action="www.somepage.com" in order to "do" something. With PHP, you can call the same page back onto itself. On Fri, 2003-04-04 at 14:37, David McGlone wrote: > Hi all, I have a real quick question. I'm trying to learn PHP and r