How to implement the Code!1: Open the Html basic code2: Connect the website with xampp3: Paste the code in Html code Name Code Add Slashes Recursively < ? function aslashes($array) { if(is_array($array)) { foreach($array as $key => $val) { if(is_array($key) { return aslashes($key); } else { $return[$key] = stripslashes($val); // recurse } } return($return); } else { return(addslashes($array)); // return slash'ed value } } ? >
No comments: