- From: Carlos Alberto Pérez Muñoz <carlos.a.perez.m@gmail.com>
- Date: Thu, 8 Jun 2006 01:07:28 -0400
- To: "olivier Thereaux" <ot@w3.org>
- Cc: www-validator@w3.org
- Message-ID: <c28a1e830606072207i6767e9f2jaf5bbea1a5a80b4d@mail.gmail.com>
By the way this is my own site which I'm trying to make W3C compliant. The uri is sent by clicking on the XHTML image within the page. this is the associated code in php: echo " function ValidXHTML( ) {\n"; echo " window.open( ' http://validator.w3.org/check?uri=http:// " .. $_SERVER[ 'SERVER_NAME' ] . $_SERVER[ 'SCRIPT_NAME' ] . "?$ParaProg', 'XHTML', 'location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1' );\n"; echo " }\n"; which then translated into html becomes: function ValidXHTML( ) { window.open( ' http://validator.w3.org/check?uri=http://carlosccna.no-ip.org/SpecialFeatures/ContactForm.php?Debug=Off&End=End', 'XHTML', 'location=1,menubar=1,resizable=1,scrollbars=1,status=1,toolbar=1' ); } Please notice that $ParaProg turns into Debug=Off&End=End I use this kind of parameters a lot in my programming to pass data from one page to another that is why I wondered what happened to the &End=End Waiting for your feedback. On 6/8/06, olivier Thereaux <ot@w3.org> wrote: > > Hello Carlos, > > On 8 Jun 2006, at 10:13, Carlos Alberto Pérez Muñoz wrote: > > > http://validator.w3.org/check?uri=http://carlosccna.no-ip.org/ > > SpecialFeatures/ContactForm.php?Debug=Off&End=End > > Where did you get that URI? > If you want to validate > http://carlosccna.no-ip.org/SpecialFeatures/ContactForm.php? > Debug=Off&End=End > then the validation address is > http://validator.w3.org/check?uri=http%3A%2F%2Fcarlosccna.no-ip.org% > 2FSpecialFeatures%2FContactForm.php%3FDebug%3DOff%26End%3DEnd > (which is what you'll get when pasting the address into the validator > form field) > > If you send this to the validator: > http://validator.w3.org/check?uri=http://carlosccna.no-ip.org/ > SpecialFeatures/ContactForm.php?Debug=Off&End=End > it will consider, rightfully so, the &End=End as a parameter for the > validator. > > -- > olivier > > > > -- Carlos A. Pérez M. -------------------------------------------------- Programación de Páginas Web Especializado en Php, Javascript y MySql. -------------------------------------------------- Web Sites Programming Php, Javascripts & MySql Specialized
Received on Thursday, 8 June 2006 05:08:46 UTC