Forum Moderators: coopster
Let's go back the beginning to see if I understand.
1. You bring up the page and then copy the page source (which, yes bcolflesh, is the php output, but I think James means the source of the html page b/c he was responding to an earlier question of mine about how it looked in "view source").
2. It validates fine, but nothing shows up in the browser (appears to be an empty page).
3. The page looked fine orginally, but since splitting it into PHP includes, it doesn't display.
If I have that right, I would look for things like unmatched tags and quotes in the html source (aka the php output), though it seems like that stuff would create validation problems.
BTW - I tried the SEW validator on a couple of pages - one that I knew woudl validate and one that I knew wouldn't. I don't get any meesages really other than the size of the page. Use the W3C validator or install SP on your own computer and validate that way.
Tom
is there something i can use that will tag the text so i can see the exact location of the error
Sorry, forgot about that. Yes, just put "echo" statements in your code. For example, you can put something like
echo "open top.include.php";
...
echo "close top.include.php";
at the top and bottom of the file top.include.php, but in principle if all you are doing is making includes, it should be easy to see what's coming from where. Perhaps I misunderstood your question again.
Also, an editor with syntax highlighting might be a big help if you are quoting something you don't think you are quoting.
Tom