Joe Harman wrote:
<?php $year=1999; $month=march;
echo "<a
href=\"http://www.thingamajigger.com/index.php?year=$year&month=$month\"
yeah this is the link</a>";
?>
-----Original Message-----
From: John Manko [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2003 2:47 AM
To: Martin Towell
Cc: 'Jack'; [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [PHP] Still can't pass variable through url
actually, you might want to urlencode it.
ok, so i doubt that you would need url encoding for $year and $month, but I'm sure you will playing with more of this in the future, so you should properly prepare to do so. Note: browsers will do formatting for you, but don't rely on it.
"page.php?year=" . urlencode($year) . "&month=" . urlencode($month)
Martin Towell wrote:
variable forSee if changing it to page.php?year=$year&month=$month works
The separator between the page and the query string is "?" The separator between each key/value pair is just "&"
-----Original Message----- From: Jack [mailto:[EMAIL PROTECTED] Sent: Friday, 8 August 2003 4:30 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] Still can't pass variable through url
Dear all
I had set the "register_global=on" and "magic_quotes_runtime=off" already, but when i click my hyperlink "page.php?year=$year&?month=$month", it doesn't pass the
?year and ?month to the destination page "page.php" I'musing php 5.0
above , if the same case apply to php4.04, then there is noproblem at
all! Can anyone please give me more help on this?
Thx alot Jack
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php