bu kodlari map2.php diye kaydet calisacaktir
<?php
$html = file_get_contents("http://www.videoara.org/rss.php");
header("Content-type: text/xml\n\n");
$html = str_replace("<br>","",$html);
$html = str_replace("</loc>","</loc>
  <changefreq>daily</changefreq>
  <priority>0.8</priority>",$html);
echo $html;
?>