Only broblem is it must be automated. I got script like this:
<?php
$test = fopen("http://saunalahti.fi/uutiset/kotimaa/index.html", "r");
if (!$test) {
echo "<p>Ei pysty.</p>\n";
exit;
}
while (!feof ($test)) {
$test2 = fgets($test, 1024);
$test3 = strstr ($test2, '<div class=otsikkonosto>');
$test3 = ereg_replace('<a href="', '<a href="http://saunalahti.fi/uutiset/kotimaa/', $test3);
$test3 = ereg_replace('otsikkonosto', 'uutisotsikko', $test3);
echo $test3;
}
fclose ($test);
?>
There must be some way to discard news with old date.
If you know some way how to get only 5 first lines or something similar, let me know.