Hi!
What about using stripslashes:
$variable = stripslashes($variable);
Also see http://www.php.net/stripslashes
/Anders Henke
"Jason Wong" <[EMAIL PROTECTED]> skrev i meddelandet
news:[EMAIL PROTECTED]...
> On Friday 29 March 2002 20:56, andy wrote:
> > does not work. Just like the decode fu
Jason Wong wrote:
>Well your problem is not caused by the rawurlencode, rawurldecode. It's
>probably because you have magic_quotes_gpc set to on.
>
>Try this:
>
>For your URL: rawurlencode(stripslashes($subject)), and same for $message.
>
>For your textarea: htmlspecialchars($subject), & $messa
On Friday 29 March 2002 20:56, andy wrote:
> does not work. Just like the decode function is out of order!
> It is not even decoding \'
> > > > >I am trying to fill a form again when an error occures, therefore I
> > >
> > > redirect
> > >
> > > > >to the form and pass the values via url like thi
ouble rawurldecode().
>
> Andrey
>
> - Original Message -
> From: "andy" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, March 29, 2002 2:36 PM
> Subject: Re: [PHP] urlencode and decode are producing \\\' instead of \'
>
>
>
try to do double rawurldecode().
Andrey
- Original Message -
From: "andy" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 29, 2002 2:36 PM
Subject: Re: [PHP] urlencode and decode are producing \\\' instead of \'
> does not hel
does not help, any other ideas?
"Bogdan Stancescu" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> You don't have to rawurlDEcode again - that's done automatically. You
> have to encode so you're HTTP compliant, but the decoding is done by PHP
> (or even
You don't have to rawurlDEcode again - that's done automatically. You
have to encode so you're HTTP compliant, but the decoding is done by PHP
(or even Apache? I'm not sure) when receiving urlencoded strings via URL
and form data.
Bogdan
andy wrote:
>Hi there,
>
>I am trying to fill a form a
Hi there,
I am trying to fill a form again when an error occures, therefore I redirect
to the form and pass the values via url like this:
HEADER("Location:/profiles/6".$recipient_id."2.html?subject=".rawurlencode($
subject)."&message=".rawurlencode($message)."");
then I put it in again like thi
8 matches
Mail list logo