Created
January 21, 2017 11:48
-
-
Save OscarAbadFolgueira/262e94926c9a7124365d5753d586a04c to your computer and use it in GitHub Desktop.
Ejemplo php en el que mostramos en el navegador texto contenido en html en varios echo.
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). | |
// También muestra algo más de texto con otras etiquetas html. | |
echo "<h1>Texto con etiqueta H1</h1>"; | |
echo "<br />"; | |
echo "<p>Este texto es un párrafo porque está incluído dentro de la etiqueta 'p' de html.</p>"; | |
echo "<p>Este texto es otro párrafo.</p>"; | |
echo "<br />"; | |
echo "<center><h2>Texto h2 centrado</h2></center>"; | |
echo "<h2 style='text-align:center;'>Texto final h2 centrado con estilos css</h2>"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment