Guest User

Untitled

a guest
Jun 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 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. fwrite($fp, $toSave);
  14.  
  15. if (fwrite($fp, $toSave)) {
  16. echo "writing=Ok&";
  17. } else {
  18. echo "writing=Error&";
  19. }
  20. fclose($fp);
  21. ?>
Add Comment
Please, Sign In to add comment