Text only
|
Text with Images
Developers Heaven Forum
Web Programming => PHP & Perl => Topic started by: admin on May 15, 2010, 11:22:55 AM
Title:
Execute Shell from PHP
Post by:
admin
on
May 15, 2010, 11:22:55 AM
you can execute any shell commed like unzip from you php cpde as following:
Code
Select
Expand
<?php
$unzip
=
shell_exec
(
"unzip filename.zip"
);
?>
Text only
|
Text with Images