Skip to content

Instantly share code, notes, and snippets.

@OscarAbadFolgueira
Last active January 21, 2017 11:42
Show Gist options
  • Save OscarAbadFolgueira/d32d16b0036b6df9e7428355d791dbf2 to your computer and use it in GitHub Desktop.
Save OscarAbadFolgueira/d32d16b0036b6df9e7428355d791dbf2 to your computer and use it in GitHub Desktop.
Ejemplo básico php en el que se muestra un texto incluido en etiquetas html por pantalla.
<?php
// Ejemplo básico de PHP - https://www.dinapyme.com - http://www.oscarabadfolgueira.com
// Mostrar texto con html por pantalla
// En este ejemplo mostramos un texto dentro de una etiqute h1 por pantalla (html).
echo "<h1>Texto con etiqueta H1</h1>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment