El meu nom és Guillem Serrat Bahí
El meu correu electrònic és 448093.clot@fje.edu Codi en PHP
<!DOCTYPE html>
<html lang="ca">
<head>
<title>Exercici 1 Guillem Serrat</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
</head>
<body>
<?php
echo "<br>\n";
$nom = "Guillem";
$cognom = "Serrat";
$cognom2 = "Bahí";
$correu = "448093.clot@fje.edu";
echo "El meu nom és $nom $cognom $cognom2<br>\n";
echo "<br>\n";
echo "El meu correu electrònic és $correu";
?>
<h1>Codi en PHP</h1>
<?php
show_source("ex1.php");
?>
</body>
</html>