RE: [PHP] Unzipping Files

2003-08-14 Thread Matt Palermo
familiar with this subject. Matt -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 11:45 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Unzipping Files On Wednesday 06 August 2003 10:19, Matt Palermo wrote: Yeah, I know someone mentioned using

Re: [PHP] Unzipping Files

2003-08-14 Thread Jason Wong
On Wednesday 06 August 2003 10:19, Matt Palermo wrote: Yeah, I know someone mentioned using the exec for this, but I was wondering if anyone knew where I could find the command-line code for this to use in PHP... Anyone know? Do you not read the replies that you receive? I believe this

Re: [PHP] Unzipping Files

2003-08-14 Thread Jason Wong
On Wednesday 06 August 2003 11:53, Matt Palermo wrote: Yes, I do read the replies. Nice to know :) I'm looking to get MORE information. Such as? This topic is very new to me, and I am just trying to find out all I can. Such as? So far people on the mailing list have been very generous

RE: [PHP] Unzipping Files

2003-08-14 Thread Matt Palermo
] Subject: Re: [PHP] Unzipping Files Try the zziplib library, http://www.php.net/manual/en/ref.zip.php -- Adam Alkins http://www.rasadam.com Quoting Matt Palermo [EMAIL PROTECTED]: Anyone know where I can find tutorials or examples on how to use the gunzip, gzip, and other commands using PHP

[PHP] Unzipping Files

2003-08-14 Thread Matt Palermo
Anyone know where I can find tutorials or examples on how to use the gunzip, gzip, and other commands using PHP to work with compressed files? I would really appreciate it if someone could send me some links or examples of how to use them. My goal would be to be able to extract .zip, .gz, and

RE: [PHP] Unzipping Files

2003-08-10 Thread Matt Palermo
PM To: Matt Palermo Cc: 'Adam Alkins'; [EMAIL PROTECTED] Subject: RE: [PHP] Unzipping Files I am doing this for a client, and he doesn't have the ZZIPlib installed, and would like to avoid it if possible. Any other ideas? It has been mentioned before: use exec, or the backtick operator

Re: [PHP] Unzipping Files

2003-08-07 Thread Adam Alkins
Try the zziplib library, http://www.php.net/manual/en/ref.zip.php -- Adam Alkins http://www.rasadam.com Quoting Matt Palermo [EMAIL PROTECTED]: Anyone know where I can find tutorials or examples on how to use the gunzip, gzip, and other commands using PHP to work with compressed files? I

RE: [PHP] Unzipping Files

2003-08-05 Thread Mike Migurski
I am doing this for a client, and he doesn't have the ZZIPlib installed, and would like to avoid it if possible. Any other ideas? It has been mentioned before: use exec, or the backtick operator, and the command-line tools: unzip, bunzip, gunzip, etc.