<?php
function showTitles($count = NULL) {
	$feedUrl = 'http://www.ceskatelevize.cz/ct24/rss/hlavni-zpravy';
	$xml = simplexml_load_file($feedUrl) or die("Error: Cannot create object");
	$items = $xml->channel->item;

	$iterator = 0;
	foreach ($items as $item) {
		if ($count !== NULL && $iterator >= $count) {
			continue;
		}

		echo "<span>" . $item->title . "</span>";
		$iterator++;
	}
}
?>

<!DOCTYPE html>
<html>
<head>
	<title>Jezdící text</title>
	<link href="style.css" rel="stylesheet">
</head>
<body>
	<div class="marquee"><marquee behavior="scroll" direction="left"><?php showTitles(3); ?></marquee></div>
</body>
</html>
