This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print_r($description); | |
echo('<br />'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach($rss->channel->item as $item){ | |
$title[] = (string)$item->title; | |
$link[] = (string)$item->link; | |
$description[] = (string)$item->description; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="width:40%;margin: 0 auto 0 auto;background-color: cornflowerblue; border-radius: 4px;" onclick="obj=document.getElementById('open').style; obj.display=(obj.display=='none')?'block':'none';"> | |
<a style="cursor:pointer;"><div style="color: black;">Read more</div></a> | |
</div> | |
<div id="open" style="display: none; clear: both;"> | |
</div> |