Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 6, 2019 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/f90af83249a4c0c560d8c93f4d63a1f4 to your computer and use it in GitHub Desktop.
Save parzibyte/f90af83249a4c0c560d8c93f4d63a1f4 to your computer and use it in GitHub Desktop.
<?php
// Definimos variables del perfil, obviamente
// estas deberían de venir de una base de datos o de la sesión
$nombre = "Luis Cabrera";
$apodo = "Parzibyte";
$sitioWeb = "https://parzibyte.me/blog";
?>
<p><strong>Nombre</strong>: <?php echo $nombre ?></p>
<p><strong>Apodo</strong>: <?php echo $apodo ?></p>
<p><strong>Sitio web</strong>: <a href="<?php echo $sitioWeb ?>">Visitar</a> </p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment