Afficher le moment de la journée

Author:

 date
Download

<html>
 <head>
  <title>Quelle heure?</title>
 </head>
 <body>

 <?php
  $heure = date( "G" );

  $msg = "Bonne soirée.";
  if( $heure < 18 ) { $msg = "Bonsoir."; }
  if( $heure < 12 ) { $msg = "Bonjour."; }

  echo( "$msg Il est ".date( "g:i a" ) );
 ?>

 </body>
</html>

Leave a Reply

Your email address will not be published. Required fields are marked *


1 + = two