arentzen
newbie
Registered: 10/01/06
Posts: 46
Loc: Sunny island, Denmark
Im running 7.2.2 and have some problems with using PHP in custom box. The script works, but not in a custom box.I get a parse error What am I doing wrong?
Php Code:
/* PHP CODE HERE, IF NECESSARY */
/* DO NOT CHANGE THE LINE BELOW */
$body = <<<EOF
<?
$feed = simplexml_load_file("http://www.dr.dk/nyheder/service/feeds/allenyheder");
$taeller = 0;
$antal = 5;
foreach($feed->channel->item as $item){
while($taeller<$antal){
if (strlen($item->description) > 35) {
$item->description = substr($item->description , 0, 35);
}
print ("<a href='{$item->link}' target='_blank'>{$item->title}</a><br/>");
print ("<i>{$item->pubDate} </i><br/>");
print ("{$item->description}... <br/><br/>");
break;
}
$taeller ++;
}
?>
EOF;
/* DO NOT CHANGE THE LINE ABOVE */
_________________________ The road to hell is paved with promises of paradise! <=====================================> www.trosfrihed.dk