xmlgeorss.php
615 Bytes
<?php
error_reporting(0);
if(!isset($locaplic))
{
$locaplic = "";
if(file_exists("../../../ms_configura.php"))
{include_once("../../../ms_configura.php");}
else
{
if(file_exists("../../ms_configura.php"))
{include_once("../../ms_configura.php");}
else
{
if(file_exists("../ms_configura.php"))
{include_once("../ms_configura.php");}
else
include_once("ms_configura.php");
}
}
}
include_once($locaplic."/classesphp/pega_variaveis.php");
include_once($locaplic."/admin/php/xml.php");
echo header("Content-type: application/xml");
echo geraXmlGeorss($locaplic);
?>