what is the reverse function for mysql_real_escape_string? or there is none?
[RESOLVED] what is the reverse function for mysql_real_escape_string?
There is none. You don't need to use one. You should only ever use mysql_escape_string just before putting something into a MySQL query. When the data come back out of the database, they will be in their original form.
Mark