Ciao a tutti
Dopo mille peripezie ho composto uno script che funziona ma . . . .
. . . . prima del risultato che è preciso, mi da questo avvertimento:
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Paris' for '1.0/no DST' instead in E:\xxxxx.php on line 11
Il mio inglese e il mio php sono maccheronici quindi non capisco e non so cosa fare.
L'errore è prodotto da questo script:
<?php
$host = "localhost";
$user = "root";
$password4 = "********";
$tabellaturni = "tabella";
$connessione=mysql_connect($host,$user,$password4) ; //connessione database
mysql_select_db("test", $connessione) or die();
$sqlquery = "SELECT * FROM $tabellaturni WHERE Turno = '".date('Y-m-d')."'";
$result = mysql_query($sqlquery);
while($r = mysql_fetch_array($result))
echo "TURNO: ".$r['Turno']." FARMACIA: ".$r['Farmacia']."<br/>";
mysql_close($connessione);
?>
Come elimino l'avvertimento ?
Grazie
Ciao