Created
January 21, 2017 11:21
-
-
Save OscarAbadFolgueira/a81ceeb714726ff8071c6a81eb707de3 to your computer and use it in GitHub Desktop.
Ejemplo básico de php en el que se muestra un texto en el navegador con 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 PHP | |
// En este ejemplo mostramos un texto por pantalla utlizando sólo php, sin html. Utilizamos ECHO. | |
echo "Este texto se muestra...."; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment