<?PHP
function right() {
echo "
<TD CLASS=\"Poll\" WIDTH=\"118\" BGCOLOR=\"#ffffff\" VALIGN=\"TOP\">
";
$start=6;
$end=30;
$file = file('http://itavisen.no/script/jsfeed.html');
$numlines = count($file);
if($numlines < $end) {
$numlines = $end;
}
for($i=$start;$i<=$numlines;$i++) {
echo $file[$i];
}
echo "
</TD>
<TD BGCOLOR=\"#3E7195\" WIDTH=\"2\">
<FONT></FONT>
</TD>
</TR>
</TABLE>
";
}
?>
anyone know what's wrong with that code?