Update index.php
This commit is contained in:
parent
69e8b7edf5
commit
0e929584e1
@ -97,29 +97,46 @@
|
||||
|
||||
<div class="rantlist-bg">
|
||||
<ul class="rantlist">
|
||||
<script>
|
||||
function showRSS(str) {
|
||||
if (str.length==0) {
|
||||
document.getElementById("rssOutput").innerHTML="http://www.rssmix.com/u/8252161/rss.xml";
|
||||
return;
|
||||
}
|
||||
if (window.XMLHttpRequest) {
|
||||
// code for IE7+, Firefox, Chrome, Opera, Safari
|
||||
xmlhttp=new XMLHttpRequest();
|
||||
} else { // code for IE6, IE5
|
||||
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
|
||||
}
|
||||
xmlhttp.onreadystatechange=function() {
|
||||
if (this.readyState==4 && this.status==200) {
|
||||
document.getElementById("rssOutput").innerHTML=this.responseText;
|
||||
}
|
||||
}
|
||||
xmlhttp.open("GET","getrss.php?q="+str,true);
|
||||
xmlhttp.send();
|
||||
}
|
||||
</script>
|
||||
<?php
|
||||
|
||||
|
||||
$xml=("http://www.rssmix.com/u/8252161/rss.xml");
|
||||
|
||||
$xmlDoc = new DOMDocument();
|
||||
$xmlDoc->load($xml);
|
||||
|
||||
//get elements from "<channel>"
|
||||
$channel=$xmlDoc->getElementsByTagName('channel')->item(0);
|
||||
$channel_title = $channel->getElementsByTagName('title')
|
||||
->item(0)->childNodes->item(0)->nodeValue;
|
||||
$channel_link = $channel->getElementsByTagName('link')
|
||||
->item(0)->childNodes->item(0)->nodeValue;
|
||||
$channel_desc = $channel->getElementsByTagName('description')
|
||||
->item(0)->childNodes->item(0)->nodeValue;
|
||||
|
||||
//output elements from "<channel>"
|
||||
echo("<p><a href='" . $channel_link
|
||||
. "'>" . $channel_title . "</a>");
|
||||
echo("<br>");
|
||||
echo($channel_desc . "</p>");
|
||||
|
||||
|
||||
//get and output "<item>" elements
|
||||
$x=$xmlDoc->getElementsByTagName('item');
|
||||
for ($i=0; $i<=2; $i++) {
|
||||
$item_title=$x->item($i)->getElementsByTagName('title')
|
||||
->item(0)->childNodes->item(0)->nodeValue;
|
||||
$item_link=$x->item($i)->getElementsByTagName('link')
|
||||
->item(0)->childNodes->item(0)->nodeValue;
|
||||
$item_desc=$x->item($i)->getElementsByTagName('description')
|
||||
->item(0)->childNodes->item(0)->nodeValue;
|
||||
echo ("<p><a href='" . $item_link
|
||||
. "'>" . $item_title . "</a>");
|
||||
echo ("<br>");
|
||||
echo ($item_desc . "</p>");
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="rssOutput">RSS-feed will be listed here...</div>
|
||||
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user