note 93280 deleted from domelement.getelementsbytagname by danbrown

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: ctcmedia dot pgardiner at googlemail dot com 

----

Simple getting Data from local or remote xml file
<programme>
 <title>Billy Bushwaka</title>
 <episodeNumber>2</episodeNumber>
 <description>Billy Bushwaka entertains</description>
 <url>play.swf</url>
</programme>

<?php
$objDOM = new DOMDocument(); 
$objDOM->load("local.xml"); 
$getData = $objDOM->getElementsByTagName("programme");

	
	$titleTag = $getData->getElementsByTagName("title");
	$title = $titleTag->item(0)->nodeValue;
	
?>

You can also add mysql inserts to your database etc
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.