Hi every1,
i am trying to write xml with php
and whenever i write this code :
<?xml version="1.0" encoding="iso-8859-1"?>
php misinterprets it and returns an error ,
does any1 know how to escape this line?
thanks
ishwar
echo '<?xml version="1.0" encoding="iso-8859-1"?> ';
Set short_open_tag to Off in php.ini, and then use <?php to start PHP code blocks.