DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Use Get_magic_quotes_gpc();
function f_magic_quotes($text) {
if ( !get_magic_quotes_gpc() ) {
return addslashes($text);
} else {
return $text;
}
}
function f_clean_quotes($text) {
if ( !get_magic_quotes_gpc() ) {
return $text;
} else {
return stripslashes($text);
}
}
<a href="http://www.ab-d.fr/">Source: ab-d</a>





