Developers Heaven Forum

Web Programming => PHP & Perl => Topic started by: admin on May 15, 2010, 05:22:55 PM

Title: Execute Shell from PHP
Post by: admin 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"); 
?>