Ejercicio 4.13.php
<?php
/*
Author:Escuela Taller Crea-Tic
Date: 21/12/2012
Descripcion: Trabajar con variables y tipos de datos
Mezclados y concatenados.
Ultima modificacion:
*/
?>
<html>
<head><title>Concatenaciones</title></head>
<body bgcolor="ccff66">
<b>
<?php
$n = 5 . " gatos";
$years = 9;
print "Los $n " . " " . "vivieron ". $years * 5 . " años. <br>";
echo "Si tiene ", $years. $n , ".<br/>";
//echo gettype($n);
?>
</b>
</body>
</html>
No hay comentarios:
Publicar un comentario