validazione W3C con errore utf-8

asevenx

Utente Attivo
7 Nov 2009
312
0
16
Salve, volevo validare in W3C un mio sito ma ottengo il seguente errore:
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>
La riga 22 che riporta l'errore è quella riga vuota prima del favicon. Sapreste dirmi che errore faccio? Grazie
 
infatti l'errore è nella pagina html non nel php. La riga 22 è subito dopo il meta author, quindi nell'head html. Ho inserito anche la parte iniziale del php perché inizialmente pensavo potesse incidere.
 
la pagina html parte dal doctype circa
vai con il browser sulla pagina in questione
clicca col tasto destro e scegli mostra sorgente
oppure mostra html
e controlla la riga 22
 

Discussioni simili