Download Zip file from server

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 →

Submit Variable to self

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 →

Add column to existing table

January 10, 2010

1. Add a column in a table

ALTER TABLE `ess` ADD `day` DATE NOT NULL COMMENT 'date of the day' AFTER `recid` ,
ADD UNIQUE (
`day`

Read the full article →

PRACTICAL TIME SAVERS

November 8, 2009

These are just some simple ideas that can save you time and help you work more effectively.

1. Write things down
A common time management mistake is to try…

Read the full article →