AW: [PHP-WIN] form vars missing...

2003-09-29 Thread Sven Schnitzke
on: Jas [SMTP:[EMAIL PROTECTED] > Gesendet am: Montag, 29. September 2003 17:59 > An: [EMAIL PROTECTED] > Betreff: [PHP-WIN] form vars missing... > > Here is my problem: > > Using both the Get and Post methods my variables are missing on the > resulting page. Examp

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Duane Lakoduk
> > That should not effect the functionality. The VALUE tag is > only required for > radio buttons and check boxes . You are correct. I tested this on my IIS 4.0 server with PHP 4.3.3RC2. The reason for no values is most likely due to bad syntax in action.php No errors are reported but s

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Svensson, B.A.T. (HKG)
> 2. As others indicated: you aren't giving any value to your text inputs. That should not effect the functionality. The VALUE tag is only required for radio buttons and check boxes . Point 1) is on target, fix that and it should work. For reference see: http://www.w3.org/TR/1998/REC-html40-1

Re: [PHP-WIN] form vars missing...

2003-09-29 Thread Jas
Sorry yeah i noticed the form element was using the wrong syntax on this page but I didn't copy/paste into the newsgroup. The results of the form for the 'url' field would be whatever the user decided to type into the particular field (ex. http://www.somewebsite.com) and the resulting page just ch

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Duane Lakoduk
Jas > > Here is my problem: > > Using both the Get and Post methods my variables are missing on the > resulting page. Example of code is listed below: > > > > > > > if ((!$name) || (!url)) { > do nothing; > } elseif (($name) || ($url)) { > do rest of code; > } else { > broken

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Svensson, B.A.T. (HKG)
ssage- From: Jas To: [EMAIL PROTECTED] Sent: 29/09/2003 18:08 Subject: Re: [PHP-WIN] form vars missing... You know I have tried that as well... ex. And I have tried adding a hidden form element as well... ex. All to no avail, I am thinking IIS is my problem but I am going to try it in a *

Re: [PHP-WIN] form vars missing...

2003-09-29 Thread Jas
ginal Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 11:08 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] form vars missing... You know I have tried that as well... ex. And I have tried adding a hidden form element as well... ex. All to no avail, I am thinking

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Gerardo Rojas
you also need reference the values as such $_POST['fname'] in the action script. -Original Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 11:08 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] form vars missing... You know I have tri

Re: [PHP-WIN] form vars missing...

2003-09-29 Thread Jas
sage news:[EMAIL PROTECTED] I believe you need to add the value="your value goes here" in the form. -Original Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 10:59 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] form vars missing... Here is my problem: U

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Gerardo Rojas
I believe you need to add the value="your value goes here" in the form. -Original Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 10:59 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] form vars missing... Here is my problem: Using both the Ge

[PHP-WIN] form vars missing...

2003-09-29 Thread Jas
Here is my problem: Using both the Get and Post methods my variables are missing on the resulting page. Example of code is listed below: http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php