RE: [PHP] Unzipping Files

2003-08-14 Thread Matt Palermo
Yes, I do read the replies.  I'm looking to get MORE information.  This
topic is very new to me, and I am just trying to find out all I can.  So
far people on the mailing list have been very generous with sharing
information, but I am looking for the most details possible, since I am
not very 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 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 question
was 
asked and answered already:

http://marc.theaimsgroup.com/?l=php-generalm=106005561004363w=2

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
--
/*
Sometimes love ain't nothing but a misunderstanding between two fools.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 question was 
asked and answered already:

http://marc.theaimsgroup.com/?l=php-generalm=106005561004363w=2

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
--
/*
Sometimes love ain't nothing but a misunderstanding between two fools.
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 with sharing
 information, but I am looking for the most details possible, since I am
 not very familiar with this subject.

Such as?

I'm curious to know that having read the manuals for gunzip, gzip (and 
whatever else compression tools you're using) what more information do you 
need to know? The manuals contains examples of usage, and if they're not 
enough then I'm sure there are tutorials you can google for.

And now that you know about exec() and friends this is getting OT.

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
--
/*
Kites rise highest against the wind -- not with it.
-- Winston Churchill
*/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Unzipping Files

2003-08-14 Thread Matt Palermo
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?

Thanks,

Matt

-Original Message-
From: Adam Alkins [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 05, 2003 8:24 PM
To: Matt Palermo
Cc: [EMAIL PROTECTED]
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 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 other types of compressed files using a PHP script.
Let
 me know if you can help. 
  
 Thanks,
  
 Matt
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.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 other types of compressed files using a PHP script.  Let
me know if you can help. 
 
Thanks,
 
Matt


RE: [PHP] Unzipping Files

2003-08-10 Thread Matt Palermo
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?

Thanks,

Matt

-Original Message-
From: Mike Migurski [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 05, 2003 8:53 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, and
the
command-line tools: unzip, bunzip, gunzip, etc.

-
michal migurski- contact info and pgp key:
sf/cahttp://mike.teczno.com/contact.html


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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 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 other types of compressed files using a PHP script.  Let
 me know if you can help. 
  
 Thanks,
  
 Matt
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



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.

-
michal migurski- contact info and pgp key:
sf/cahttp://mike.teczno.com/contact.html


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php