Re: [PHP-DB] value error in PHP form

2004-06-24 Thread Rinku
nt "Rinku"; } Let me know if this works. Hope this helps. Best, -Zak From: Rinku Date: Thu, 24 Jun 2004 03:07:12 -0700 (PDT) To: Zachary Krakov Cc: Subject: Re: [PHP-DB] value error in PHP form Hi Zak, Thanks for your suggestion. It really worked. Now pls answer for the query de

Re: [PHP-DB] value error in PHP form

2004-06-24 Thread Jason Wong
On Thursday 24 June 2004 18:07, Rinku wrote: > I had written the code : > if(isset($_POST['Variable1'])&&isset($_POST['Variable2'])) > { > Print "Rinku"; > } > Here, even if variables are not set then even I am getting Output as > "Rinku". Some form elements, eg , are always "isset()" even wh

Re: [PHP-DB] value error in PHP form

2004-06-24 Thread Zachary Krakov
24 Jun 2004 03:07:12 -0700 (PDT) To: Zachary Krakov <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Subject: Re: [PHP-DB] value error in PHP form Hi Zak, Thanks for your suggestion. It really worked. Now pls answer for the query described below : I had written the code : if(isset($_POST[&#x

Re: [PHP-DB] value error in PHP form

2004-06-24 Thread Rinku
t; Kenny > > -----Original Message- > From: Rinku [mailto:[EMAIL PROTECTED] > Sent: 20 June 2004 12:23 > To: [EMAIL PROTECTED] > Subject: [PHP-DB] value error in PHP form > > Dear All, > > I have installed PHP on WinXp. I am using MySql as Backe

Re: [PHP-DB] value error in PHP form

2004-06-23 Thread Zachary Krakov
The reason for this is due to the variable "$action" not having any relation to the action. Therefore, you should use the following if/then statement: if ($submit !== '') { // STATEMENTS } The "submit" name/value pair variable passed via your form is a named variable that possesses the value

Re: [PHP-DB] value error in PHP form

2004-06-23 Thread Zachary Krakov
4:34 AM, "Kenny" <[EMAIL PROTECTED]> wrote: > This could be due to register globals on/off > > Use > print $_POST['action']; > print $_POST['Name']; > > Kenny > > -Original Message- > From: Rinku [mailto:[EMAIL PROTECTED] >

Re: [PHP-DB] value error in PHP form

2004-06-21 Thread jeffrey_n_Dyke
>>Hi. You left out the 'php' after the ' See if that helps any. ~Philip > > > > > print $action; > print $Name; > ?> > > > -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP Database Mailing List (http://www.php.net/) To un

Re: [PHP-DB] value error in PHP form

2004-06-21 Thread Philip Thompson
Hi. You left out the 'php' after the ' See if that helps any. ~Philip -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Rinku
x27;Name']; > > Kenny > > -Original Message- > From: Rinku [mailto:[EMAIL PROTECTED] > Sent: 20 June 2004 12:23 > To: [EMAIL PROTECTED] > Subject: [PHP-DB] value error in PHP form > > Dear All, > > I have installed PHP on WinXp. I am using My

Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Kim Steinhaug
due to register globals on/off > > Use > print $_POST['action']; > print $_POST['Name']; > > Kenny > > -Original Message- > From: Rinku [mailto:[EMAIL PROTECTED] > Sent: 20 June 2004 12:23 > To: [EMAIL PROTECTED] > Subject: [PHP-DB]

Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Kris Geens
Maybe this might work -- -- - Original Message - From: "Rinku" <[EMAIL PROTECTED]> To: "Marvin Hechanova" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, June 20, 2004 2:18 PM Subject: Re: [PHP-DB] value

Re: [PHP-DB] value error in PHP form

2004-06-20 Thread Rinku
Actually I want to use the function like if($action="Login") { Statements; } But here I am not getting any value in $action even I click on it. When I was using Linux at that time I had not this kind of problem. Rinku Marvin Hechanova <[EMAIL PROTECTED]> wrote: You have to assign values to your n

RE: [PHP-DB] value error in PHP form

2004-06-20 Thread Kenny
This could be due to register globals on/off Use print $_POST['action']; print $_POST['Name']; Kenny -Original Message- From: Rinku [mailto:[EMAIL PROTECTED] Sent: 20 June 2004 12:23 To: [EMAIL PROTECTED] Subject: [PHP-DB] value error in PHP form Dear All, I h

[PHP-DB] value error in PHP form

2004-06-20 Thread Rinku
Dear All, I have installed PHP on WinXp. I am using MySql as Backend on Apache server. Now the problem is.. I am writing this code : Here I should get output as LoginRinku But I am getting nothing. Can any of you guide me on this? Regards, Rinku