Independent Technology News Network
Tuesday 07th of February 2012

IPTV Watch


IPTV Watch

IPTV Watch is a news site covering the latest developments in the IPTV industry.

The target market is both consumers and industry professionals looking for further information and/or research on the IPTV industry, products, and services.

Website: IPTV Watch

Latest IPTV news headlines:

    $xmlfile = file_get_contents ("http://www.iptv-watch.co.uk/feed/");

    if (empty($xmlfile))
    die("failed to connect to xml feed");

    preg_match_all("|(.*)|sU”, $xmlfile, $items);

    $itemlist = array();

    foreach ($items[1] as $key => $item)
    {
    preg_match(”||s”, $item, $title);
    preg_match(”| (.*)|s”, $item, $link);
    preg_match(”|(.*)|s”, $item, $desc);

    $itemlist[$key][’title’] = $title[1];
    $itemlist[$key][’link’] = $link[1];
    $itemlist[$key][’desc’] = $desc[1];

    }

    // Display all article titles, linking them to the actual story

    foreach ($itemlist as $item)
    {
    echo ‘

  • ‘ . $item[’title’] . ‘
  • ‘;
    echo $item[’desc’].”";
    }

    $xmlfile = “”; // empty out the xmlfeed variable so that you can test the next one.

    ?>