Skip to content

Instantly share code, notes, and snippets.

@OscarAbadFolgueira
Created January 21, 2017 11:21
Show Gist options
  • Save OscarAbadFolgueira/a81ceeb714726ff8071c6a81eb707de3 to your computer and use it in GitHub Desktop.
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.
<?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