Like us on Facebook and stand a chance to win pen drives!

Generate Excel Data in PHP

Create Excel
Create Excel




<?php

header("Content-Type: application/xls");

header("Content-disposition: attachment; filename=data.xls");

echo 'Id' . "\t" . 'Item' . "\t" . 'Qty' . "\n";

echo '001' . "\t" . 'Compaq 610 laptop' . "\t" . '02' . "\n";

?>

1 comments:

Copyright © 2012 The Code Junction.