This file contains hidden or 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 | |
require_once('twitteroauth/twitteroauth.php'); | |
$consumer_key = 'aqui va tu consumer key'; | |
$consumer_secret = 'aqui va tu consumer secret'; | |
$access_token = 'aqui va tu consumer access token'; | |
$access_token_secret = 'aqui va tu consumer access token secret'; | |
// Se crea el objeto "TwitterOauth" con las configuraciones |
This file contains hidden or 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
## Oda a Coffee Kit | |
Cuando me despierto temprano en la mañana | |
Pienso en lo difícil que puede llegar a ser la semana | |
Entre el trabajo, los pendientes y reuniones exigientes | |
Me doy el espacio necesario y suficiente |
This file contains hidden or 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 codigo para descarga de archivos. | |
Uso : <a href="descarga.php?id=5">...</a> | |
Buscará en DB el archivo en la DB y luego enviará la descarga | |
**/ | |
/* Configuración DB */ | |
$dbname = 'nombre_de_base_de_datos'; |