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 | |
| echo $_FILES['archivo1']; | |
| echo $_FILES['archivo2']; | |
| echo $_POST['nombre']; | |
| ?> |
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 | |
| /** | |
| * Simple excel generating from PHP5 | |
| * | |
| * @package Utilities | |
| * @license http://www.opensource.org/licenses/mit-license.php | |
| * @author Oliver Schwarz <oliver.schwarz@gmail.com> | |
| * @version 1.0 | |
| */ |
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
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>La Regia Grill - Menú Digital</title> | |
| <!-- Incluye Tailwind CSS para los estilos --> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <!-- Configura la fuente Inter para una mejor legibilidad --> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet"> |
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 | |
| // === 1. Obtener el ID de la URL === | |
| // Verifica si el parámetro 'id' está presente en la URL (ejemplo: https://tuweb.com/pagina.php?id=598) | |
| if (isset($_GET['id']) && !empty($_GET['id'])) { | |
| $post_id = htmlspecialchars($_GET['id']); // Limpia y valida el input | |
| // La URL de la API que quieres consultar | |
| $api_url = "https://routicket.com/api/v3/code/?id=" . $post_id; | |
| // === 2. Consumir la API (usando file_get_contents para simplicidad) === |
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
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Entrada de Blog | Código Routicket #9762</title> | |
| <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"> | |
| <style> | |
| /* --- CSS Estilo Blog --- */ | |
| body { |
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
| const Alexa = require('ask-sdk-core'); | |
| const axios = require('axios'); | |
| // --- CONFIGURACIÓN DE LA URL --- | |
| const MUSIC_DATA_URL = 'https://routicket.com/plugins/play/musica/track/alexa.php'; | |
| // --- INTERCEPTORES --- | |
| // Interceptor para cargar y guardar la lista de música una vez por sesión (o al primer uso) | |
| const LoadMusicDataInterceptor = { |