More to the point, if $input is your variable:
<?
if (get_magic_quotes_gpc())
{
$input = stripslashes($input);
}
?>
--
Jason Murray
[EMAIL PROTECTED]
Web Developer, Melbourne IT
"Work now, freak later!"
> -----Original Message-----
> From: Jamie Thompson [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, June 27, 2001 10:58 PM
> To: Marcus James Christian; [EMAIL PROTECTED]
> Subject: RE: [PHP] Filtering out \ when a ' is user entered?
>
>
>
> use the str_replace() function
> http://www.php.net/manual/en/function.str-replace.php
>
>
> -----Original Message-----
> From: Marcus James Christian [mailto:[EMAIL PROTECTED]]
> Sent: 27 June 2001 05:19
> To: [EMAIL PROTECTED]
> Subject: [PHP] Filtering out \ when a ' is user entered?
>
>
> Hello,
>
> I'm pretty new to PHP but all I've seen of it so far I pretty
> much love!
>
> I've built a web log but when the user enters their data and
> they use '
> or " (and you know they will) php always shows it from the included
> web log as
>
> \' How can I filter out these backslashes so they don't appear on the
> final public viewable page?
>
> Thanks,
> Marcus
>
> --
> Marcus James Christian - UNLIMITED -
> Multimedia Internet Design
> http://mjchristianunlimited.com
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail:
> [EMAIL PROTECTED]
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail:
> [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]