<!DOCTYPE html>
<html lang="ca">
<head>
<title>Exercici 4 Guillem Serrat</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
</head>
<body>
<?php
$dia = date("D");
switch ($dia) {
case "Mon":
echo"Avui és dilluns";
break;
case "Tue":
echo"Avui és dimarts";
break;
case "Wed":
echo"Avui és dimecres";
break;
case "Thu":
echo"Avui és dijous";
break;
case "Fri":
echo"Avui és divendres";
break;
case "Sat":
echo"Avui és dissabte";
break;
case "Sun":
echo"Avui és diumenge";
break;
}
?>
<h1>Codi en PHP</h1>
<?php
show_source("ex4.php");
?>
</body>
</html>