January 11, 2010
// the next three lines force an immediate download of the zip file:
header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename=test.zip");
echo $zipfile -> file();
Read the full article →
January 11, 2010
<?php
# Title: Subimitting variables to self
# Description : This script describes that how a variable can be sent to same page.
# This page work
…
Read the full article →