Hi guys!
Having an update almost ready, with fixes for some of the issues seen, ex. the IE7-issue are fixed

Alessandro,
In this new script doesn't show anymore when wxsim updated (Please look the first attachment). Is it possible to re-insert that text?
For this part:
Fresh forecast 4 times a day, at 04, 10, 16 and 22.I have added that line manually before the wxsim-code

The rest are from orginal wxsim-plaintextparser
<span style="float: right;"><b><?php echo get_lang("Updated:");?></b> <?php echo $fcstage; ?><br/></span>
<b><?php echo get_lang("WXSIM Forecast for:");?> </b><?php echo $WXSIMcity; ?><br />
<b><?php echo get_lang("Made by");?>:</b> <?php echo get_lang("Weatherstation");?> Halikko<br/><br/>Where $fcstage is a simple php-query with filemtime('pathtoplaintext.txt') and then that trought date-function like this:
$fcstage = filemtime('plaintext.txt');
$fcstage = date('d.m.Y H:i T', $fcstage);Is it possible imported only the summary icons in Home page like the single script? (Look the second attachment)I have it on my frontpage, just use the top-part of the <body>-code in sivu2.php and left out the tabs and all what they include. The main functions for plaintextparser are all still there, i haven't changed them in any way, only added a few new arrays to choose from and the table-output

Here is what i use on my frontpage:
<table style="width:980px;">
<tr>
<?php
echo "
<td style=\"width:16%;text-align:center;\">$WXSIMicons[0]</td>
<td style=\"width:16%;text-align:center;\">$WXSIMicons[1]</td>
<td style=\"width:16%;text-align:center;\">$WXSIMicons[2]</td>
<td style=\"width:16%;text-align:center;\">$WXSIMicons[3]</td>
<td style=\"width:16%;text-align:center;\">$WXSIMicons[4]</td>
<td style=\"width:16%;text-align:center;\">$WXSIMicons[5]</td>
\n"; ?>
</tr>
<tr>
<?php
echo "
<td class=\"topforecasttemp\" style=\";text-align:center;\"><b>$WXSIMtempbig[0]</b></td>
<td class=\"topforecasttemp\" style=\";text-align:center;\"><b>$WXSIMtempbig[1]</b></td>
<td class=\"topforecasttemp\" style=\";text-align:center;\"><b>$WXSIMtempbig[2]</b></td>
<td class=\"topforecasttemp\" style=\";text-align:center;\"><b>$WXSIMtempbig[3]</b></td>
<td class=\"topforecasttemp\" style=\";text-align:center;\"><b>$WXSIMtempbig[4]</b></td>
<td class=\"topforecasttemp\" style=\";text-align:center;\"><b>$WXSIMtempbig[5]</b></td>
\n";
?>
</tr>
</table>
<br/>
<div class="topforecasttext">
<b><? echo $WXSIMday[0] ?></b><br /><? echo $WXSIMtext[0] ?><br/><br/>
Henkka