Re: Cannot validate dynamic html with W3C because of missing Character Encoding

2002-10-07 Thread Richard Krause
Hi guys I updated my cgi.pm to the most recent version available. But this didn't help. I therefore did some more testing, if I write my script like this: print $q->header, $q->start_html(), I'm not getting any meta tags at all and of course it doesn't get validated. I then tried to i

Re: Cannot validate dynamic html with W3C because of missing Character Encoding

2002-10-06 Thread Steve Grazzini
Todd Wade <[EMAIL PROTECTED]> wrote: > Todd Wade wrote: >> See about upgrading CGI.pm. My start_html() outputs a XHTML transitional >> dtd and a XML processing instruction that has the document encoding. My >> docs validate fine. If its not your server, put CGI.pm in one of your >> directories, an

Re: Cannot validate dynamic html with W3C because of missing Character Encoding

2002-10-05 Thread Todd Wade
Todd Wade wrote: > Richard wrote: > >> Hello >> >> I wrote a script that creates dynamic html. I validated the resulting >> html code with W3C and it couldn't validate it because it didn't detect >> the character encoding. I added the meta information to the header with >> the -meta argument: >

Re: Cannot validate dynamic html with W3C because of missing Character Encoding

2002-10-04 Thread Todd Wade
Richard wrote: > Hello > > I wrote a script that creates dynamic html. I validated the resulting html > code with W3C and it couldn't validate it because it didn't detect the > character encoding. I added the meta information to the header with > the -meta argument: > > $q->start_html( -dtd =>

Cannot validate dynamic html with W3C because of missing Character Encoding

2002-10-02 Thread Richard
Hello I wrote a script that creates dynamic html. I validated the resulting html code with W3C and it couldn't validate it because it didn't detect the character encoding. I added the meta information to the header with the -meta argument: $q->start_html( -dtd => '-//W3C//DTD HTML 4.01 Transitio