<?php
function
magicSlashes
(
$strString
)
{
if
(
get_magic_quotes_gpc
(
)
==
1
)
{
return
(
$strString
)
;
}
else
{
return
addslashes
(
$strString
)
)
;
}
}
?>