Your register_globals is probably turned off, and since you probably don't have the ability to alter the ini file, try putting this at the top of your code:
$Action = $_REQUEST['Action']; --------------------- John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Nullum magnum ingenium sine mixtura dementiae fuit > -----Original Message----- > From: Palli [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 06, 2003 3:53 PM > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] New to PHP > > > Hello > > Im new to PHP and I have a little problem. > It seems that I always get a blank value from a query string. > > This is my code > > <a href="login.php?Action=Login">BLA </a> > > and this is login.php > > <tr> > <td width="100%" colspan="2"> > <!--Main page--> > <?php > if (empty($Action)) > { > include("MainPage.php"); > } > else > { > if($Action == 'Login') > { > include("loginpage.php"); > } > else > { > include("MainPage.php"); > } > } > ?> > </td> > </tr> > > > but the $Action is always empty. > > ps. I´ve tried to change the variable name but no succes. > > thanx > Palli > > > > -- > PHP Windows Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php