Advertisement
Guest User

File writer

a guest
Jun 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. <html>
  2.   <head>
  3.       <style>
  4.           .a{
  5.             max-width: 800px;
  6.             max-height: 400px;
  7.             min-width: 800px;
  8.             min-height: 400px;
  9.             overflow-y: scroll;
  10.           }
  11.          
  12.       </style>
  13.   </head>
  14.    
  15.     <body>
  16.       <?php
  17.         error_reporting(0);
  18.         $x=fopen("../home.txt", "a+");
  19.  
  20.         echo "<form method='post'><textarea class='a' name='y' type='text'></textarea><input type='submit' value='submit'></form>";
  21.        
  22.         $y=$_POST["y"];
  23.         file_put_contents('C:\\xampp\\htdocs\\Photographers website_laptop\\website\\home.txt', $y, FILE_APPEND);
  24.         echo "<textarea class='a'>".file_get_contents('C:\\xampp\\htdocs\\Photographers website_laptop\\website\\home.txt')."</textarea>";
  25.       ?>
  26.   </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement