Jump to content

Is this possible?


marcus

Recommended Posts

not sure but your dev-tuts website isn't working and on your neoblob site...that flash has the activate border around it...here is an IE fix for that... put this code under your embed tag

 

<script language="javascript" src="fix.txt"></script>

 

and here is the fix.txt file

 

[attachment deleted by admin]

Link to comment
Share on other sites

Just grabbed this off the website...looks like what you want to do

 

<?php
$za = new ZipArchive();

$za->open('test_with_comment.zip');
print_r($za);
var_dump($za);
echo "numFiles: " . $za->numFiles . "\n";
echo "status: " . $za->status  . "\n";
echo "statusSys: " . $za->statusSys . "\n";
echo "filename: " . $za->filename . "\n";
echo "comment: " . $za->comment . "\n";

for ($i=0; $i<$za->numFiles;$i++) {
    echo "index: $i\n";
    print_r($za->statIndex($i));
}
echo "numFile:" . $za->numFiles . "\n";
?> 


 

http://ca3.php.net/zip

Link to comment
Share on other sites

Well I didn't dig too deep into it, just grabbed it off php.net...follow the link and read all about it.  If you are doing this at home, do a php_info and make sure the ZIP classes are enabled on your server.  You may have to do that first before it will work.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.