Get XML feed data
$file = "http://xml.altinkaynak.com/doviz.xml";
function startElement($parser, $name, $attrs)
{
global $ShwText;
if($name == 'DOVIZ') $ShwText .= "";
}
function endElement($parser, $name)
{
global $ShwText;
if($name == 'DOVIZ') $ShwText .= " ";
}
function characterData($parser, $data)
{
global $ShwText;
if($data != '') $ShwText .= "".$data." ";
}
$ShwText = "";
";
echo $ShwText;
function startElement($parser, $name, $attrs)
{
global $ShwText;
if($name == 'DOVIZ') $ShwText .= "
}
function endElement($parser, $name)
{
global $ShwText;
if($name == 'DOVIZ') $ShwText .= "
}
function characterData($parser, $data)
{
global $ShwText;
if($data != '') $ShwText .= "
}
$ShwText = "
echo $ShwText;