Re: [PHP] base64 encode question

2008-04-03 Thread Aschwin Wesselius
Sn!per wrote: encoded value is: YToyOntzOjQ6InRpbWUiO2k6MTIwNzIwODk4MjtzOjQ6Imhvc3QiO3M6MTQ6IjE5Mi4xNjguMTAuMTAwIjt9 encoded value is: YToyOntzOjQ6InRpbWUiO2k6MTIwNzIwODk4NDtzOjQ6Imhvc3QiO3M6MTQ6IjE5Mi4xNjguMTAuMTAwIjt9 encoded value is: YToyOntzOjQ6InRpbWUiO2k6MTIwNzIwODk4NTtzOjQ6Imhvc3QiO

Re: [PHP] Base64 Encode

2003-02-02 Thread Lowell Allen
> From: "Stephen" <[EMAIL PROTECTED]> > > I have a PHP script that works on older versions of PHP but on 4.3, it > outputs nothing. Here's my code: > > echo ''."\n" > ."\n".'if (document.location == top.location)'."\n" > .' top.location="home.php?goto=' > .base64_encode($_SERVER["REQUEST_URI"])

Re: [PHP] Base64 Encode

2003-02-02 Thread Stephen
--- Original Message - From: "Evan Nemerson" <[EMAIL PROTECTED]> To: "Stephen" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, February 02, 2003 2:24 AM Subject: Re: [PHP] Base64 Encode : What about $_GET['goto']??? Sounds like another registe

Re: [PHP] Base64 Encode

2003-02-01 Thread Evan Nemerson
What about $_GET['goto']??? Sounds like another register_globals issue. Also, instead of base64 encoding, you may want to use the rawurlencode and rawurldecode functions. On Saturday 01 February 2003 07:02 pm, Stephen wrote: > I have a PHP script that works on older versions of PHP but on 4.3,