Author Topic: Execute Shell from PHP  (Read 4409 times)

Offline admin

  • Administrator
  • Sr. Member
  • *****
  • Posts: 296
    • View Profile
Execute Shell from PHP
« on: May 15, 2010, 05:22:55 PM »
you can execute any shell commed like unzip from you php cpde as following:
Code: [Select]
<?php 
$unzip 
shell_exec("unzip filename.zip"); 
?>