Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 8, 2019 01:45
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/9720cb83c12746b2969eda4f1da80f54 to your computer and use it in GitHub Desktop.
Save parzibyte/9720cb83c12746b2969eda4f1da80f54 to your computer and use it in GitHub Desktop.
<?php
#Crear si no existe
if(!file_exists("mensajes.txt")){
touch("mensajes.txt");
}
file_put_contents("mensajes.txt", $_POST["mensaje"] . PHP_EOL . PHP_EOL, FILE_APPEND);
header("Location: tablero.php");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment