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
https://forums.phpfreaks.com/topic/62749-is-this-possible/#findComment-312318
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
https://forums.phpfreaks.com/topic/62749-is-this-possible/#findComment-312324
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.