lszanto Posted March 9, 2007 Share Posted March 9, 2007 For some reason my doctypes are interfering with the php, <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> in the exampt it is talking the <?xml version="1.0" encoding="UTF-8"?> as php cause of the <? and ?> is there any way of disabling this apart from turning off short tags? Link to comment https://forums.phpfreaks.com/topic/41919-xhtml-errors-with-php/ Share on other sites More sharing options...
benjaminbeazy Posted March 9, 2007 Share Posted March 9, 2007 echo '<?xml version="1.0" encoding="UTF-8"?>'; Link to comment https://forums.phpfreaks.com/topic/41919-xhtml-errors-with-php/#findComment-203261 Share on other sites More sharing options...
lszanto Posted March 10, 2007 Author Share Posted March 10, 2007 echo '<?xml version="1.0" encoding="UTF-8"?>'; Yeah I fixed it but you would have to do this. echo '<?xml version=\"1.0\" encoding=\"UTF-8"\ ?>'; Link to comment https://forums.phpfreaks.com/topic/41919-xhtml-errors-with-php/#findComment-203992 Share on other sites More sharing options...
genericnumber1 Posted March 10, 2007 Share Posted March 10, 2007 Yeah I fixed it but you would have to do this. echo '<?xml version=\"1.0\" encoding=\"UTF-8"\ ?>'; no you wouldn't, you dont have to escape quotes if they aren't interfering, and the echo has single quotes so you don't have to escape doubles. Link to comment https://forums.phpfreaks.com/topic/41919-xhtml-errors-with-php/#findComment-203999 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.