well i wanted to have complete and valid html headers and tried this
<?php
some code
?>
<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
this resulted in an php parse error
so i tried
<?php
some code
echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\n";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
but now i got another problem... all table vAlign tags seem to not work anymore!!!!!! mixing up layout...
so what am i doing wrong.... anyone got arround php parsing the xml?