Errors found while checking this document as XHTML 1.0 Transitional!

Result: 2 Errors, 4 warning(s)
:
: utf-8
: XHTML 1.0 Transitional
Root Element: html
Root Namespace: http://www.w3.org/1999/xhtml
Options

Help on the options is available.

Notes and Potential Issues

The following notes and warnings highlight missing or conflicting information which caused the validator to perform some guesswork prior to validation, or other things affecting the output below. If the guess or fallback is incorrect, it could make validation results entirely incoherent. It is highly recommended to check these potential issues, and, if necessary, fix them and re-validate the document.

  1. Info No Character encoding declared at document level

    No character encoding information was found within the document, either in an HTML meta element or an XML declaration. It is often recommended to declare the character encoding in the document itself, especially if there is a chance that the document will be read from or saved to disk, CD, etc.

    See this tutorial on character encoding for techniques and explanations.

↑ Top

Validation Output: 2 Errors

  1. Warning Line 165, Column 92: cannot generate system identifier for general entity "ct"
    …<a href="/002.aspx?dqa=0:0:0:72:0:0:-1:0:0&ct=111">relatórios de contas</a></b>

    An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".

    Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&amp;" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and &aelig; are different characters.

    If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.

    Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.

  2. Error Line 165, Column 92: general entity "ct" not defined and no default entity
    …<a href="/002.aspx?dqa=0:0:0:72:0:0:-1:0:0&ct=111">relatórios de contas</a></b>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  3. Warning Line 165, Column 94: reference not terminated by REFC delimiter
    …<a href="/002.aspx?dqa=0:0:0:72:0:0:-1:0:0&ct=111">relatórios de contas</a></b>

    If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.

  4. Warning Line 165, Column 94: reference to external entity in attribute value
    …<a href="/002.aspx?dqa=0:0:0:72:0:0:-1:0:0&ct=111">relatórios de contas</a></b>

    This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&amp;'.

  5. Error Line 165, Column 94: reference to entity "ct" for which no system identifier could be generated
    …<a href="/002.aspx?dqa=0:0:0:72:0:0:-1:0:0&ct=111">relatórios de contas</a></b>

    This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.

  6. Info Line 165, Column 91: entity was defined here
    …<a href="/002.aspx?dqa=0:0:0:72:0:0:-1:0:0&ct=111">relatórios de contas</a></b>

↑ Top