Hi All in phpinfo page I find the charset is UTF-8.
Content-Type text/html; charset=UTF-8
I want to remove the charset to null witout changing in php.ini file is it possible.
Hi All in phpinfo page I find the charset is UTF-8. Content-Type text/html; charset=UTF-8
Share
If you have the privileges to do so, you can override INI settings on a per-script basis. Otherwise you can simply output an overriding header:
header("Content-type: text/html; charset=ISO-8859-1");or include it directly in your HTML output as<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />, obviously replacing ISO-8859-1 with whatever you want.