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 | |
$mensajes = array( | |
array('titulo' => 'Notificacion 1', 'mensaje' => 'Mensaje ejemplo'), | |
array('titulo' => 'Hola Mudo', 'mensaje' => 'como estas?'), | |
array('titulo' => 'Puto el que lee', 'mensaje' => 'Leiste ja!'), | |
array('titulo' => 'Ganaste', 'mensaje' => 'Un verdadero premio'), | |
array('titulo' => 'Sos el visitante numero 1000', 'mensaje' => 'No ganaste nada'), | |
); | |
shuffle($mensajes); | |
header("Content-Type: application/json; charset=utf-8"); |