Senin, 19 Mei 2008

Make Money From The Internet

A lot of tutorial how to make money from the internet. I will share you from this ebook. Here you are the link.
That book how to make a money from the internet. I hope you enjoy that boook

Minggu, 18 Mei 2008

Exporting Excel Using PHP

Once upon day, A talks to B. "palz, how to export data table to excel format using PHP ??? " asked A. "it's easy palz, you can using a library for php to export in excel format. You can download it from the internet" B answered."that's to complex, meanwhile i haven't much money" A deceitful. "Alright, let me show you the way" response B while opened his laptop.

Firstly we make a table like this :

















No.NamePosition
1AAnalyst
2BProgrammer


Next we add a code in the top of header like this:


  1. header("Content-type: application/vnd.ms-excel");
  2. header("Content-disposition: attachment; filename=coba1.xls"); // filename terserah anda
  3. header("Pragma: no-cache");
  4. header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
  5. header("Expires: 0");

"Finish, that's all. You only put that header" explain B. "OK, i will try it, thanx palz" A answered.