En el primer lección del vídeo tutorial te hacen un ejemplo con la funcion date y me sale el siguiente problema:
Cita:
Este es el codigo phpLibrería Online
Resumen del pedido
Orden Procesada.
Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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 'America/Los_Angeles' for '-8.0/no DST' instead in C:\AppServ\www\php\comensandophp2.php on line 18
9 November,20:18
Resumen del pedido
Orden Procesada.
Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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 'America/Los_Angeles' for '-8.0/no DST' instead in C:\AppServ\www\php\comensandophp2.php on line 18
9 November,20:18
Código PHP:
<html>
<head>
<title>Formulario de libros ~ Aprendiendo a Programar PHP</title>
</head>
<body>
<h1>Libreria Online</h1>
<h2>Resumen del pedido</h2>
<?
/*
Ultima edicion: Noviembre 9 2008
*/
echo "<p>Orden Procesada."; //Esto aparecera en pantalla
echo date("j F,H:i ");
?>
</body>
</html>