1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <?php
$xml = '<?xml version="1.0" encoding="iso-8859-1"?>';
$xml = '<rss version="2.0">';
$xml .= '<channel>';
$xml .= '<title>Mon-site.com</title>';
$xml .= '<link>http://www.mon-site.com</link>';
$xml .= '<description>Description accentuée</description>';
// connexion à la bdd + requêtes d'extraction
/* ... */
$xml .= '</channel>';
$xml .= '</rss>';
// écriture dans le fichier xml, notamment <description>.
$fp = fopen("mon_fichier.xml", 'w+');
fputs($fp, $xml);
fclose($fp);
@mysql_close();
header("Location: ./ma_page.xml");
?> |
Partager