Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 24, 2019 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/51adeefa0b8aa5c95e1add5537ae2e35 to your computer and use it in GitHub Desktop.
Save parzibyte/51adeefa0b8aa5c95e1add5537ae2e35 to your computer and use it in GitHub Desktop.
<?php
// Aquí podemos procesar los datos. Vienen dentro de $_POST
$nombre = $_POST["nombre"];
$correo = $_POST["correo"];
$edad = $_POST["edad"];
file_put_contents("datos.txt", "Nombre: $nombre, Correo: $correo, Edad: $edad\n", FILE_APPEND);
echo json_encode("Formulario enviado");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment