Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 24, 2019 16:47
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/e7dc10b0f360607f27ffeb4742969909 to your computer and use it in GitHub Desktop.
Save parzibyte/e7dc10b0f360607f27ffeb4742969909 to your computer and use it in GitHub Desktop.
<?php
$nombre = "Luis";
$sitio = "parzibyte.me";
$html = "<h1>Nombre: $nombre</h1>";
# Concatenarle más cosas
$html .= "<p>Web: $sitio</p>";
# Finalmente lo imprimimos como HTML
echo $html;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment