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 →

Video Hosting on Godaddy

November 8, 2009

Instead of YouTube or any other video sharing site, I wanted to host my videos on my own site. I tried some scripts that hosts streaming videos like YouTube. But…

Read the full article →