
PROBLEMAS CON EL PRINT
Publicado por Janine (2 intervenciones) el 03/08/2021 01:10:55
Hola a todos, a ver si me pueden ayudar. Tengo este código:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
Bienvenido a mi sitio Web
</title>
</head>
<body>
<?php
print "Bienvenidos al curso <br/>";
$nombre="Juan";
print $nombre;
?>
<p></p>
</body>
</html>
pero me despliega lo siguiente:
Espero su ayuda por favor.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
Bienvenido a mi sitio Web
</title>
</head>
<body>
<?php
print "Bienvenidos al curso <br/>";
$nombre="Juan";
print $nombre;
?>
<p></p>
</body>
</html>
pero me despliega lo siguiente:
Espero su ayuda por favor.
Valora esta pregunta


0