اقتباس:
| <?
include('config.php');
//جلب الاخبار
function xml_news ()
{
//xml
$sql=("select * from news order by id_news desc");
$result=mysql_query($sql);
define('NEWLINE', "\r\n", true);
$xml = '<?xml version="1.0" encoding="utf-8" standalone="yes" ?>' . NEWLINE;
$xml .= "\t<content>\r\n";
while($myrow = mysql_fetch_assoc($result))
{
extract($myrow);
$xml .= "\t<news>\r\n";
$a = iconv('windows-1256','utf-8',$name_photo);
$xml .= " \t<title>$title</title>\r\n";
$xml .= " \t<first>$first</first>\r\n";
$xml .= " \t<pic>$pic</pic>\r\n";
$xml .= "\t</news>\r\n";
}
$xml .= '</content>';
$fp = fopen('news.xml','w');
fwrite($fp, $xml);
fclose($fp);
//xml
}
xml_news ();
?> |
دا الملف الphp اللي بيصدر ملف الxml للفلاش وبيقرا من الداتا بيز