http://www.iceteks.com/news/rssfeed.xml
Enjoy!

Archived topic from Iceteks, old topic ID:1923, old post ID:15714
Actually, I don't think CNN provides feeds.such as CNN
Code: Select all
<?php
header("Content-type: application/rss+xml");
echo("<?xml version="1.0" ?>
");
?>
<rss version="2.0">
<channel>
<title>Outside Articles</title>
<description>Various reviews and articles from around the tech globe!</description>
<link>http://www.iceteks.com</link>
<?php
$sqlinfo = mysql_connect("localhost","iceteks_root","I_do_not_publicly_display_passwords");
$result = mysql_select_db("iceteks_frontpagenews",$sqlinfo);
$result = mysql_query("select * from main order by date desc limit 100;") or die("<font color="red">SQL Error: " . mysql_error()."</font>");
$count = mysql_num_rows($result);
while($count>0)
{
$info = mysql_fetch_array($result);
$info[content] = str_replace('
', '
', $info[content]);
$info[link] = str_replace('&', '&', $info[link]);
$info[content] = str_replace('&', '&', $info[content]);
$info[title] = str_replace('&', '&', $info[title]);
$info[content] = str_replace('’', ''', $info[content]);
$info[title] = str_replace('’', ''', $info[title]);
$info[content] = str_replace('‘', ''', $info[content]);
$info[title] = str_replace('‘', ''', $info[title]);
$info[content] = str_replace('£', '[euro]', $info[content]);
$info[title] = str_replace('£', '[euro]', $info[title]);
$info[content] = str_replace('“', '"', $info[content]);
$info[title] = str_replace('“', '"', $info[title]);
$info[content] = str_replace('”', '"', $info[content]);
$info[title] = str_replace('”', '"', $info[title]);
$info[content] = str_replace('®', '(R)', $info[content]);
$info[title] = str_replace('®', '(R)', $info[title]);
$info[content] = str_replace('™', '(TM)', $info[content]);
$info[title] = str_replace('™', '(TM)', $info[title]);
?>
<item>
<title><?php echo($info[title]);?></title>
<description><?php echo($info[content]);?></description>
<link><?php echo($info[link]);?></link>
</item>
<?php
$count--;
}
mysql_close($sqlinfo);
?>
</channel>
</rss>
[code]
[color=#888888][size=85]Archived topic from Iceteks, old topic ID:1923, old post ID:15720[/size][/color]
a protrusion of an organ or part through connective tissue or through a wall of the cavity in which it is normally enclosed -- called also ruptureRed Squirrel wrote: what's Hernia?
Are you saying that to flatter me, or are you trying to say something else???takahita_tsukino wrote:Brandon, the hardest thing there is the PHP, and that's something I feel you could pick up on quickly enough. Out of that PHP, most of it is just one function used again and again.
Yep, actually based on the two tutorials I have, you could easly pick up on that code. Basically what it does is pull out the 100 latest entries in the database and display them in the right format.Brandon, the hardest thing there is the PHP, and that's something I feel you could pick up on quickly enough. Out of that PHP, most of it is just one function used again and again.