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['Variable1'])&&isset($_POST['Variable2']))
{
  Print "Rinku";
}
  Here, even if variables are not set then even I am getting Output as "Rinku".
 
Could you  pls answer for the query.
Thanks,
Rinku

Zachary Krakov <[EMAIL PROTECTED]> wrote:
Hi Rinku,
One problem I see is that the HTML tags appear to be off... Your HTML is
improperly formatted, which could be causing rendering anomalies to occur,
in addition to the register globals issue which I'll mention shortly. Please
correct your HTML code to read:






HTML_BODY_HERE



Two, Like Kenny said, change the "register_globals = Off" directive in your
PHP.ini file to " register_globals = On" so that variables are carried from
your form values into your post-processing PHP print functions.

Hope this helps,
Best,
-Zak


On 6/20/04 4:34 AM, "Kenny" 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]
> 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 Backend on Apache
> server.
> Now the problem is......
> I am writing this code :
> 
> 
> 
> 
> 
> 
> 
> 
> 
>  [input] 
>  [input] 
> > print $action;
> print $Name;
> ?>
> 
> 
> 
> Here I should get output as LoginRinku
> But I am getting nothing.
> 
> Can any of you guide me on this........?
> 
> Regards,
> Rinku
> 
> 
> 
> 
> 
> 
> ---------------------------------
> Do you Yahoo!?
> New and Improved Yahoo! Mail - Send 10MB messages!

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


                
---------------------------------
Do you Yahoo!?
New and Improved Yahoo! Mail - 100MB free storage!

Reply via email to