Re: failing validation - PHP

> The extensions of my files are PHP. But it has never been a problem with  
> this before. But when I walidate a HTML file on the same location, it  
> works.

You cannot use a markup validator to check PHP code. PHP is a scripting  
language. It needs to be parsed by the server to produce HTML markup.

Put the file on a server that can process PHP files, and then enter the  
file's URL into the validator. The validator will then request the file  
 from the server, the server will execute the PHP code (hopefully producing  
valid HTML), and send that HTML to the validator.

If this is what you are currently doing, then it seems that your server is  
sending the wrong Content-Type to the clients. Check your server  
configuration or contact your server's admin.

RMN
~~~

Received on Saturday, 23 December 2006 17:43:18 UTC