Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/11/2008, 22:34
Avatar de RufioStill
RufioStill
 
Fecha de Ingreso: agosto-2008
Mensajes: 24
Antigüedad: 15 años, 8 meses
Puntos: 0
Pregunta Duda con funcion date

Tengo un problema, recién me inicio con php, no se nada aun estoy siguiendo un vídeo tutorial en http://www.illasaron.com/tele/php.htm.

En el primer lección del vídeo tutorial te hacen un ejemplo con la funcion date y me sale el siguiente problema:

Cita:
Librerí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
Este es el codigo php

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>