Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. #Crear si no existe
  4. if(!file_exists("mensajes.txt")){
  5. touch("mensajes.txt");
  6. }
  7. file_put_contents("mensajes.txt", $_POST["mensaje"] . PHP_EOL . PHP_EOL, FILE_APPEND);
  8. header("Location: tablero.php");
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement