Free! - export to Excel

Have you ever seen an option to export to excel on the bottom of a table. In this tutorial we are going to show you how to add that feature to your site.  

Using the Export to Excel extension it's really quick and easy.   The only complicated part is writing your SQL statements - if you want to be very particular about what is displayed in the Excel Document.  

You can program a feature like this yourself (in either ASP or PHP) however it will take an hour or two. With the The Export to Excel extension it takes 3 minutes and it only costs $17.00.

Aron K

Aron KChief software architect at SimpleTick.com
SimpleTick is an ASP.Net e-Ticketing Application.
You can install SimpleTick on any Windows 2008 server.
If you are a PHP guru - have no fear. SimpleTick works well with WebHooks. SimpleTick is written in C#.
There's an open source version!

See All Postings From Aron K >>

Reviews

Export to Excel Dreamweaver Server Behavior

October 18, 2007 by Alex July

Here is the extension that does the job:
http://linecraft.com/e2e/help.php

This isn't FREE!

April 29, 2009 by student 101

This isn't FREE!
It's Advertised as "Free! - export to Excel"

It costs USD$ 24.00

What is FREE about this?

December 2, 2009 by Lon Winters

Instructions on how to use it?  Gee thanks. First it says, FREE, then it says 17 dollars, then it says 24 dollars.  

C'mon people, get with the program. DMX Zone has become way to confusing as of late.  

Simplest way to export to excel

December 4, 2009 by student 101
<?php
$filename ="excelreport.xls"; //filename
$contents = "testdata1 \t testdata2 \t testdata3 \t \n"; //data
header('Content-type: application/ms-excel');
header('Content-Disposition: attachment; filename="'."$filename);
echo $contents;
?>
See all 6 Reviews

You must me logged in to write a review.