/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
if(!function_exists('stripslashes_deep')) { function stripslashes_deep($value) { $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value); return $value; } }