11 lines
216 B
PHP
11 lines
216 B
PHP
|
<html>
|
||
|
<body><h1>Test PHP </h1>
|
||
|
<p>This is the PHP web page for this server.</p>
|
||
|
<?php
|
||
|
$date = date("d-m-Y");
|
||
|
$heure = date("H:i");
|
||
|
Print("Bonjour Nous sommes le $date et il est $heure");
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|