Hi All, I am successfully exporting MySQL data to an excel sheet, but before the resultset in excel i get the following lines of code.
Code:
<?
require_once("func.stripslashes_arrays.php");
if (get_magic_quotes_gpc()) {
stripslashes_arrays($_GET);
stripslashes_arrays($_POST);
stripslashes_arrays($_COOKIE);
# stripslashes_arrays($_FILES);
#verify $_FILES gets escapes by MAGIC_QUOTES first
}
?>
I have questions:
- What is that?
- How do i remove it.
Note: I do not have access to php.ini file.
Thank you