[PHP-WIN] Re: Can't Pass variable to other page

2003-08-14 Thread Ben
I had the same problem a couple of weeks ago. register_globals=On magic_quotes_runtime=Off Ben "Jack" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Dear all > I had write a script like this : > > $link = "page.php?day=$day&month=$month&year=$year"; > > when i click on the link,

Re: [PHP-WIN] Re: Can't Pass variable to other page

2003-08-07 Thread Miha Nedok
Or access you variables via $_GET. $varname = $_GET['varname']; -Mike On Thu, 7 Aug 2003, Ben wrote: > Date: Thu, 7 Aug 2003 10:25:57 +0100 > From: Ben <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED], [EMAIL PROTECTED] > Subject: [PHP-WIN] Re: Can't Pass var