estas que te confundes en el $row...
prueba asi mi estimado:
Código PHP:
Ver original<?php
header('Content-Type: text/xml'); echo '<?xml version="1.0" encoding="iso-8859-1"?>';
echo "<rss version='2.0'>
<channel>";
$getnews = mysql_query("SELECT * FROM news ORDER BY id DESC") or
die ("La tabla no existe"); echo "
<item>
<title>".$row['title']."</title>
<link>http://www.youtube.com/watch?v=".$row['direccion']."</link>
<description>".$row['body']."</description>
</item>
";
}
echo "</channel></rss>";
?>
Suerte