Salve, volevo validare in W3C un mio sito ma ottengo il seguente errore:
Questo invece è l'inizio dell'index
La riga 22 che riporta l'errore è quella riga vuota prima del favicon. Sapreste dirmi che errore faccio? Grazie
Sorry, I am unable to validate this document because on line 22 it contained one or more bytes that I cannot interpret as utf-8 (in other words, the bytes found are not valid values in the specified Character Encoding). Please check both the content of the file and the character encoding indication.
The error was: utf8 "\xE8" does not map to Unicode
Questo invece è l'inizio dell'index
PHP:
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
//recupero dati salvati nei cookie
$username = $_COOKIE['username'];
$password = $_COOKIE['password'];
include 'include/var.php';
include 'include/characters.php';
include 'include/database.php';
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<meta name="description" content="...">
<meta name="keywords" content="...">
<meta name="author" content="...">
<link rel="shortcut icon" href="img/favicon.ico">
<head>