Ver Mensaje Individual
  #6 (permalink)  
Antiguo 17/02/2013, 06:12
kristerger
 
Fecha de Ingreso: octubre-2010
Mensajes: 10
Antigüedad: 14 años
Puntos: 0
Respuesta: Mostrar una imagen según la fecha

Haber, no hay caso... evidentemente estoy haciendo algo mal... copio el código tal cual lo tengo e la página php.
Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Documento sin título</title>
  6. </head>
  7.  
  8. <body>
  9. <?php
  10. $fecha = date("d-m-Y");
  11. switch ($fecha) {
  12.      case "04-08-2010":
  13.          echo "<img src='http://compuky.com/radio/17-02-2013.jpg'>";
  14.          break;
  15.      case "05-08-2010":
  16.          // ...
  17.          break;
  18. }
  19. ?>
  20.  
  21. </body>
  22. </html>