Advertisement
lamiastella

name.php

Sep 20th, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <?php echo "aaaaaaaaa"; ?>
  2.  
  3. <html>
  4. <body>
  5.  
  6. <form action="welcome.php" method="post">
  7. Name: <input type="text" name="name"><br>
  8. E-mail: <input type="text" name="email"><br>
  9. <input type="submit">
  10. </form>
  11.  
  12.  
  13. <?php
  14.  
  15. $output = shell_exec('ls -ltr');
  16. var_dump($output);
  17. echo "<pre>$output</pre>";
  18. ?>
  19.  
  20.  
  21.  
  22. <form action="upload.php" method="post" enctype="multipart/form-data">
  23.     Select image to upload:
  24.     <input type="file" name="fileToUpload" id="fileToUpload">
  25.     <input type="submit" value="Upload Image" name="submit">
  26. </form>
  27.  
  28.  
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement