Bonjour
voici mon code
sur mon serveur local j'obtient des caractères arabes de type windows-1256 , sur le serveur j'ai des caractères de type iso-8859-1.
Code : 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
18
19
20
21
22
23
24
25
26
27
28
29 <html> <head> <!--<meta http-equiv="content-type" content="text/html; charset=windows-1256" />--> </head> <body> <table border="0" align="center"> <tr> <td align="center" style="background-image:url('/images/arabe.jpg');background-repeat:repeat ;" height="70" width="550"> <font size="24" color="#FFFFFF" > <p style="font-family:personnelle"> <?php header( 'content-type: text/html; charset=windows-1256 ' ); echo $contenu; ?> </p> </font> </td> </tr> </table> </body> </html>
Partager