Hello, I have been working on redesigning a website. I did PSD then PSD to xHTML. My xHTML files were w3c valid markup language and valid CSS. I made sure its cross browser compatability. Now, After embedding this xHTML into a PHP script. I have found that layout in IE7 IE8 is a total mess. I have taken care of.. that my file starts with <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> and nothing is echoed before this. regards, aqif
You need to post more details really. To turn the error reporting on, go into the php config file and set it. I can't see it being an error in your code though, you are probably just echo'ing something out incorrectly....A misplaced div or an unclosed tag or something. Give us more info man
For turning PHP errors just put these lines at the top of your index.php file: ini_set('display_errors',1); error_reporting(E_ALL & ~E_NOTICE); p.s. Don't forget to comment out any *error* options in .htaccess if you have one.