Guest User

Untitled

a guest
Jun 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. //Capture data from $_POST array
  3. $title = $_POST['Title'];
  4. $comments = $_POST['Comments'];
  5. $image = $_POST['Image'];
  6.  
  7. //Make one big string in a format Flash understand
  8. $toSave = "Title=$title&Comments=$comments&Image=.$image";
  9.  
  10. //Open a file in write mode
  11. $fp = fopen("informacion.txt", "w");
  12.  
  13. if (fwrite($fp, $toSave)) {
  14. echo "writing=Ok&";
  15. } else {
  16. echo "writing=Error&";
  17. }
  18. fclose($fp);
  19. ?>
Add Comment
Please, Sign In to add comment