News:

To still receiving newsletters from us please subscribe to our Newsletters:
http://tech.groups.yahoo.com/group/developers-Heaven/

Main Menu

Execute Shell from PHP

Started by admin, May 15, 2010, 11:22:55 AM

Previous topic - Next topic

admin

you can execute any shell commed like unzip from you php cpde as following:
<?php 
$unzip 
shell_exec("unzip filename.zip"); 
?>