Вот код XML:
<current>
<number>8609</number>
<price>40</price>
</current>
А вот код php:
$file = "http://domen.ru/parse.xml";
$file_data = "";
$fd = fopen( $file, "r");
if (!$fd) {
echo "Error! Could not open the file.";
die;
}
while (! feof($fd)) {
$file_data .= fgets($fd, 5000);
}
$movies = new SimpleXMLElement($file_data);
$number = $movies->current[0]->number;
$price = $movies->current[0]->price;
echo "Стоимость смс на номер $number - $price руб." ;