English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

as fare as i can tell every thing is in order does any one have any sugestions

2007-06-10 21:57:38 · 2 answers · asked by Anonymous in Computers & Internet Programming & Design

2 answers

The odds are that there is some error being generated, and it isn't being sent to the browser. Start the file with a line like this...

error_reporting(E_ALL);

If you want to fine-tune, you can modify the error reporting around a tricky part of code, and set it back afterwards, like this...

$old = error_reporting(E_ALL);
// insert code here
error_reporting($old);

Don't forget to use your web browser's View Source command to see if something isn't being generated, but invisible in "HTML mode".

2007-06-12 14:46:04 · answer #1 · answered by Anonymous · 2 0

Well, there are several things that can cause that, even as simple as a bad table tag. If you view the source what is shown? You might want to post the page code and maybe we can tell you.

Generally with PHP its a bad or missing tag somewhere.

2007-06-11 09:45:20 · answer #2 · answered by Tracy L 7 · 0 0

fedest.com, questions and answers