Guys what is the correct site header using UTF-8 encoding so that when i click the back key of my browser previous pages i entered will automatically loaded without waiting several seconds to load it again,.I saw certain sites that when i click back previous pages automatically reloaded without any page revalidation.I think it was because of cache save by the browser..
Anyway heres my site header..
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
echo "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\"\"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
echo "<html xmlns=\"http://www.w3.org/1999/xhtml\">";
It implies no-cache and must revalidated, maybe thats why when i browse my site at click back to the previous page the page will revalidate again and i must have to wait few seconds before its done,took a little hastle thats why i want to change it. My site is a session base.Please anyone helps me to fix this out,thanks a lot in advance...
Heres my site http://pinoygsm.net
Anyway heres my site header..
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
echo "<!DOCTYPE html PUBLIC \"-//WAPFORUM//DTD XHTML Mobile 1.0//EN\"\"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";
echo "<html xmlns=\"http://www.w3.org/1999/xhtml\">";
It implies no-cache and must revalidated, maybe thats why when i browse my site at click back to the previous page the page will revalidate again and i must have to wait few seconds before its done,took a little hastle thats why i want to change it. My site is a session base.Please anyone helps me to fix this out,thanks a lot in advance...
Heres my site http://pinoygsm.net
Comment