> Now i get a error window saying: "Document contained no data"
That usually means PHP crashed.
Check your web-server error logs.
Also, try adding some debug output before each statement to pinpoint the
crash line.
> ----------code-----------------
>
> $noaa = "http://weather.noaa.gov/cgi-bin/mgetmetar.pl?cccc=MUHA" ;
> $wfile = fopen ($noaa, "r");
>
>
> $weathcont = fread ($wfile , 1024);
>
> ereg (" ([0-9][0-9])/([0-9][0-9]) " , $weathcont, $reg);
>
> $far = 32 + ( $reg[1] / (5.0 / 9.0));
> $data = date("d F");
> $ora = (date("H")-6);
>
> echo "<font size=\"-1\" color=\"SteelBlue\"><b>
> Temperature in Habana, on $data, at ";
> if ($ora < 0){
> $timezone = ($ora + 24);
> echo $timezone;
> }else{
> echo $ora ;
> }
> echo " is:</b></font><br>
> <font color=\"SteelBlue\"><b>$reg[1] C ($far F)</b></font>";
> fclose($wfile);
>
> --------end of code --------------------------
--
Visit the Zend Store at http://www.zend.com/store/
Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]