risolto dovevo attivare una estensione sul file php.ini :rollo:
extension=php_mbstring.dll

durante le prove è sorto (come sempre) un problema, non riesco ad utilizzare le variabili $HTTP_
codice:
<?php
$today = getdate(); 
$month = $today['month']; 
$mday = $today['mday']; 
$year = $today['year']; 
echo "$month $mday, $year";
echo "$http_user_agent";
?>
mi da questo errore:
September 27, 2005
Notice: Undefined variable: http_user_agent in C:\Programmi\Apache Group\Apache2\test\1.php on line 7
:master: