i am getting this error : XML Parsing Error: not well-formed
<?php
header("Content-type: text/vnd.wap.wml; charset=utf-8");
header("Pragma: no-cache");
header("Cache-Control: no-store; no-cache; must-revalidate");
echo("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\"". " \"http://www.wapforum.org/DTD/wml_1.1.xml\">";
?>
and my files are saved in utf-8 format
one more thing i added gzip function i added it in one page does it will be added to all the others pages too because when i add that in 1 page my users who use old phones saying that they are getting bad gateway message
header("Content-type: text/vnd.wap.wml; charset=utf-8");
header("Pragma: no-cache");
header("Cache-Control: no-store; no-cache; must-revalidate");
echo("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
echo "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\"". " \"http://www.wapforum.org/DTD/wml_1.1.xml\">";
?>
and my files are saved in utf-8 format
one more thing i added gzip function i added it in one page does it will be added to all the others pages too because when i add that in 1 page my users who use old phones saying that they are getting bad gateway message
Comment