On Saturday 11 March 2006 6:11 am, Ludvig Ericson wrote:
> http://uk2.php.net/stripslashes
>
This would partially unescape it, but mysql_escape_string does more than just
add slashes to a string.
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/un
http://uk2.php.net/stripslashes
On 3/11/06, Ron Piggott (PHP) <[EMAIL PROTECTED]> wrote:
> Is there a way to unescape a string once the command
>
> mysql_real_escape_string($variable);
>
> has been used on it? (This is to display it to the screen, instead of
> sending it to the database.)
>
> Ron