Bonjour,
Avez-vous essayé en utilisant un DOCTYPE Strict ?
Code php : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="fr"> <head> <title>Page Google</title> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> </head> <body> <h3 style="text-align: center;">Page Google</h3> <?php $contenu = include("http://www.google.com/notebook/public/16869903454478755607/BDRcoQgoQsvOTxeAj"); echo utf8_encode($contenu); ?> </body> </html>
-
Partager