parseFloat: date and time from PHP

Hi all,

my swf gets the actual time and date from php on the remote server. this works fine:

<?php   
//   
$serverdate=date("D M j G:i:s T Y");   
echo "&servdatephp=".$serverdate;   
//   
$servertime=time();    
echo "&servtimephp=".$servertime ;   
?>

however only with server with central european time (CEST). I got the following version for the middle european time server (MEST):

<?php   
//   
$serverdate=date("D M j G:i:s T Y");  
$serverdate=str_replace("MEST", "CEST", $serverdate);  
$serverdate=str_replace("DST", "CEST", $serverdate);  
echo "&servdatephp=".$serverdate;   
//   
$servertime=time();   
echo "&servtimephp=".$servertime ;   
?>

Although the output of both php’s is the same, flash cannot interpret the second one (MEST) when php is loaded.

can anyone explain, what’s the difference? is evreything correct with parseFloat?

thanx,