Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

dropshippers
programmershelp
finance products

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


create a gzip file

this backups index.php to a gzip file

<?php
$data = implode("", file("index.php"));
$gzdata = gzencode($data, 9);
$fp = fopen("index.php.gz", "w");
fwrite($fp, $gzdata);
fclose($fp);
?>