Hi All
I want winzip to automatically unzip my files
i have small script
<?php
$zipFile = "c:\data.zip";
$unzipFile = "c:\data";
$cmd = "c:\progra~1\winzip\winzip32 -min -e -o $zipFile $unzipFile"; //command for unzipping
exec($cmd,$output,$rv);
?>
But the script never unzips and keeps going on....
(I have registered version of winzip 😉 )
through command line this command works.
I even used system function ...
Where can be the problem i am running this
on php4.2.4-dev and windows 2000
thanks
gyash