bu arada eklenmesi gereken yeri tam yazarsanız sevinirim, kodlar bu şekilde eklenmiş:
print "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n";
print "<title>".$title."</title>\n";
print "<link>".$url."</link>\n";
print "<copyright>".$lang['rss_copyright']."</copyright>\n";
print "<item>\n";
print " <title>".$results['vtitle']."</title>\n";
print " <link>".$video."</link>\n";
print " <description>\n";
print " <![CDATA[";
if ($config[same_title_uploads]=="0") {
print "<a href=\"$video\"><img src=\"$photo\" align=\"left\" border=\"0\" width=\"$config[img_max_width]\" height=\"$config[img_max_height]\" vspace=\"0\" hspace=\"10\" /></a>
<p>".$lang['rss_descr']." ".$description."</p>
<p>".$lang['rss_addedby']." <a href=\"$config[base_url]/profile/".$results['username']."\">".$results['username']."</a><br/>".$seen."<br/></p><br />
".$lang['rss_tags']." ";
}
else {
print "<a href=\"$video\"><img src=\"$photo\" align=\"left\" border=\"0\" width=\"$config[img_max_width]\" height=\"$config[img_max_height]\" vspace=\"0\" hspace=\"10\" /></a>
<p>".$lang['rss_descr']." ".$description."</p>
<p>".$lang['rss_addedby']." <a href=\"$config[base_url]/profile/".$results['username']."\">".$results['username']."</a><br/>".$seen."<br/></p><br />
".$lang['rss_tags']." ";
}
$tok = strtok($results['vtags'], " ");
while ($tok !== false)
{
print "<a href=\"$config[base_url]/search/tags/".$tok."\">".$tok."</a> ";
$tok = strtok(" ");
}
print "<br />".$lang['rss_addedon']."".$results['adddate']."<br/></p><br /><hr>";
print " ]]>\n";
print " </description>\n";
print " <author>".addslashes(htmlentities(strip_tags($results[username]),ENT_QUOTES,'UTF-8'))."</author>\n";
print "</item>\n";
}
mysql_close();
print "</channel>";
print "</rss>";
?>