954,206 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Exporting GD image to excel

I am constructing a line graph on a GD image.Do you guys know of any way i can export it into excel such that its just like one created in excel

disto
Newbie Poster
3 posts since Sep 2007
Reputation Points: 10
Solved Threads: 0
 

Put this code in top of your file. and display your image as you are displaying in HTML file. It will download as excel file as you want

$file_type = "vnd.ms-excel";
$file_name= "somename.xls";
header("Content-Type: application/$file_type");
header("Content-Disposition: attachment; filename=$file_name");
header("Pragma: no-cache");
header("Expires: 0");

Vijaykarthick
Newbie Poster
1 post since Dec 2007
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You