Receive the Broadcast program with XML [on hold]
- by bitmez4
I have a channel publishing sites and I wanna get into the channel CNN broadcast program..
CNN broadcast the program here: (you can see in source - xml File)
http://tvprofil.net/xmltv/data/cnn.info/weekly_cnn.info_tvprofil.net.xml
How the data according to the time of withdrawal?
For example:
Now program: "bitmez's table"
next program: "stack's table" in 30 minute
Is this possible?
UPDATE 1 //
-I can take the XML data but to all of XML file-
<?php
if(!$xml=simplexml_load_file('http://tvprofil.net/xmltv/data/cnn.info/weekly_cnn.info_tvprofil.net.xml')){
trigger_error('XML file -- read error',E_USER_ERROR);
}
echo 'X-';
foreach($xml as $programme){
echo 'Now: '.$programme->title.' <br/>';
}
?>