[PHP] Re: Ouput HTML w/PHP

2005-06-30 Thread Murray @ PlanetThoughtful
Rick Emery wrote: This leads (sort of) to a second question: how can I validate my HTML? My applications run on an intranet (with database access), so I can't use the W3C Validator to point to the URL. If I try to upload the file, the validator doesn't parse the PHP to get the HTML output (whi

[PHP] Re: Ouput HTML w/PHP

2005-06-30 Thread Satyam
Some time ago I started working on something realted to this. I was very unsatisfied with managing HTML as just another string, since HTML does have a structure, which we should be able to check before releasing it, if possible, by the same IDE we program with. Perhaps you will want to check i

[PHP] Re: Ouput HTML w/PHP

2005-06-30 Thread Catalin Trifu
Hi, It seems to me you are going the wrong way with "embedded" PHP; try separating logic from view, tons of mvc frameworks out there and templating engines. Try firefox with web developer extension -> Validate Local HTML. Catalin Rick Emery wrote: > And now for something completel