Re: [PHP-WIN] Problem: URL Encoded Parameters

2003-09-28 Thread The Hub
s requires "\r\n". > > > > Warren Vail > > [EMAIL PROTECTED] > > > > > > -----Original Message----- > > From: The Hub [mailto:[EMAIL PROTECTED] > > Sent: Sunday, September 28, 2003 8:15 PM > > To: [EMAIL PROTECTED] > > Subject:

Re: [PHP-WIN] Problem: URL Encoded Parameters

2003-09-28 Thread The Hub
nix recognizes the "\n" as end of line, windows requires "\r\n". > > Warren Vail > [EMAIL PROTECTED] > > > -Original Message- > From: The Hub [mailto:[EMAIL PROTECTED] > Sent: Sunday, September 28, 2003 8:15 PM > To: [EMAIL PROTECTED] > Subject: [PHP

RE: [PHP-WIN] Problem: URL Encoded Parameters

2003-09-28 Thread Warren Vail
28, 2003 8:15 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Problem: URL Encoded Parameters I've found it very useful to put PHP parameters after the ? in URLs, and then access it with it's name in the next page. e.g. file.php?param=true¶m2=hello Then in file.php: echo $param . "\

[PHP-WIN] Problem: URL Encoded Parameters

2003-09-28 Thread The Hub
I've found it very useful to put PHP parameters after the ? in URLs, and then access it with it's name in the next page. e.g. file.php?param=true¶m2=hello Then in file.php: echo $param . "\n"; echo $param2 . "\n"; Here's my problem: this seems to only work on Linux systems, because whenever I try