SandPrince
Registered
може ли някой да ми даде кода за RSS новините на softvisia.com и на IDG.bg - та да ми се обновяват автоматично както на all.bg
Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
bizarre каза:Софтуер: http://www.softvisia.com/e107_plugins/rss_menu/rss.php?1.2.1
Хардуер: http://www.softvisia.com/forums/index.php?act=rssout&id=7
admin каза:http://web-tourist.net/login/login/view.php?st=383
Това е урока.
Виж кодовете.
Ако не се справиш ще ти ги напиша довечера.
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251">
<?php
$xmlfile = fopen("http://idg.bg/online/idgbgonline_startbg.xml", "r");
if(!$xmlfile)die("cannot open the xml file");
$readfile = fread($xmlfile ,300000);
$searchfile = eregi("<item>(.*)</item>", $readfile ,$arrayreg);
$filechunks = explode("<item>", $arrayreg[0]);
$count = count($filechunks);
echo "<table border='1'>";
for($i=1 ; $i<=$count-1 ;$i++)
{
ereg("<title>(.*)</title>",$filechunks[$i], $title);
ereg("<link>(.*)</link>",$filechunks[$i], $links);
ereg("<description>(.*)</description>",$filechunks[$i],$desc);
echo "<tr><td>";
echo "<a href ='$links[1]'>$title[1]</a><br/>";
echo $desc[1];
echo "</td></tr>";
}
echo "</table>";
?>
admin каза:Нещо със softvisia не стават с тези кодове а не ми се търси код за парсване.
Има в php.net и даже и във it-palce май бях видял един клас ама
ме мързи да ровя.
Ето един работещ код за idg.bg .
Код:<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251"> <?php $xmlfile = fopen("http://idg.bg/online/idgbgonline_startbg.xml", "r"); if(!$xmlfile)die("cannot open the xml file"); $readfile = fread($xmlfile ,300000); $searchfile = eregi("<item>(.*)</item>", $readfile ,$arrayreg); $filechunks = explode("<item>", $arrayreg[0]); $count = count($filechunks); echo "<table border='1'>"; for($i=1 ; $i<=$count-1 ;$i++) { ereg("<title>(.*)</title>",$filechunks[$i], $title); ereg("<link>(.*)</link>",$filechunks[$i], $links); ereg("<description>(.*)</description>",$filechunks[$i],$desc); echo "<tr><td>"; echo "<a href ='$links[1]'>$title[1]</a><br/>"; echo $desc[1]; echo "</td></tr>"; } echo "</table>"; ?>
Да се натисна ето и за web-tourist.net :
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251">
Последни уроци:
<?php
$xmlfile = fopen("http://web-tourist.net/uroci.xml", "r");
if(!$xmlfile)die("cannot open the xml file");
$readfile = fread($xmlfile ,300000);
$searchfile = eregi("<item>(.*)</item>", $readfile ,$arrayreg);
$filechunks = explode("<item>", $arrayreg[0]);
$count = count($filechunks);
echo "<table border='1'>";
for($i=1 ; $i<=$count-1 ;$i++)
{
ereg("<title>(.*)</title>",$filechunks[$i], $title);
ereg("<link>(.*)</link>",$filechunks[$i], $links);
echo "<tr><td>";
echo "<a href ='$links[1]'>$title[1]</a><br/>";
echo $desc[1];
echo "</td></tr>";
}
echo "</table>";
?>
Последни теми от форума:
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1251">
Последни теми от форума:
<?php
$xmlfile = fopen("http://web-tourist.net/rss.xml", "r");
if(!$xmlfile)die("cannot open the xml file");
$readfile = fread($xmlfile ,300000);
$searchfile = eregi("<item>(.*)</item>", $readfile ,$arrayreg);
$filechunks = explode("<item>", $arrayreg[0]);
$count = count($filechunks);
echo "<table border='1'>";
for($i=1 ; $i<=$count-1 ;$i++)
{
ereg("<title>(.*)</title>",$filechunks[$i], $title);
ereg("<link>(.*)</link>",$filechunks[$i], $links);
echo "<tr><td>";
echo "<a href ='$links[1]'>$title[1]</a><br/>";
echo $desc[1];
echo "</td></tr>";
}
echo "</table>";
?>