Advertisement
sailorpapay

Untitled

Nov 11th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. $login = $_POST['login'];
  3. $pass = $_POST['pass'];
  4. echo $login."<br>";
  5. echo $pass."<br>";
  6.  
  7.  
  8.  
  9. $arr = array (
  10. "login"=>"$login",
  11. "pass"=>"$pass");
  12.  
  13.  
  14.  
  15.  
  16.  
  17. file_put_contents('hey.txt', $arr);
  18. $content = file_get_contents('hey.txt');
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. echo "<br>Reading lines from txt file:<br>";
  27. $get_content = file('hey.txt');
  28. foreach ($get_content as $key => $value) {
  29. echo($key . " " . $value . "<br>");
  30.  
  31.  
  32.  
  33. }
  34.  
  35.  
  36.  
  37.  
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement