La variable 1 (Guillem Serrat Bahí) és del tipus string
La variable 2 (1714) és del tipus integer
La variable 3 (3.14159) és del tipus double
Codi en PHP
<!DOCTYPE html>
<html lang="ca">
<head>
<title>Exercici 2 Guillem Serrat</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
</head>
<body>
<?php
echo "<br>\n";
$v1 = "Guillem Serrat Bahí";
$v2 = 1714;
$v3 = 3.14159;
echo "La variable 1 ($v1) és del tipus " . gettype($v1);
echo "<br>\n";
echo "La variable 2 ($v2) és del tipus " . gettype($v2);
echo "<br>\n";
echo "La variable 3 ($v3) és del tipus " . gettype($v3);
echo "<br>\n";
?>
<h1>Codi en PHP</h1>
<?php
show_source("ex2.php");
?>
</body>
</html>