Last active
January 21, 2017 11:42
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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