SimpleXML

byid/simplexml.php:
<?php
$file 
= (isset($argv[2])) ? $argv[2] : $_GET['file'];
$dom = new DomDocument();
$sxe simplexml_load_file("../".$file.".txt");

foreach(
$sxe->entry as $entry) {
    if (
$entry["ID"] == 9999) {
        break;
    }
}


 
getElementById() © copyright 2004  Bitflux GmbH