hi,
i was wondering of a simple way to generate a pdf & excel spreadsheet from a php form and mysql table with data in it?
any help would be great.
many thanks
hi,
i was wondering of a simple way to generate a pdf & excel spreadsheet from a php form and mysql table with data in it?
any help would be great.
many thanks
to export to xl just include the header and write HTML with tables
<?php
$filename ="excelreport.xls";
$contents = "testdata1 \t testdata2 \t testdata3 \t \n";
header('Content-type: application/ms-excel');
header('Content-Disposition: attachment; filename='.$filename);
echo $contents;
?>
to export to pdf, you have many ways. Use phps built in pdf support, a library that php supports, or just an HTML to PDF converter like http://www.rustyparts.com/pdf.php
Have a look at this page:
http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads.php
thanks for this and also the other links from you all, i managed to get a server behaviour for dreamweaver for excel which made it simple for me, however i will look at this for the pdf part as that is something i would like to incorporate.
many thanks
Hi sorry for the delay.
The requirement has slightly changed from what i had originally thought.
I have looked at all the links and other docs on net but this exports the html page to pdf.
What i need to do is:
On my page i have quite a long application form. i need to prepopulate the info from the mysql database after it has been inserted to a pdf doc which has all the questions on it and the answers come from the database.
so basically in my app currently you can view the clients details from the inserted form which is fine, but how can i click a button which then adds the data into a pdf document?
i looked at other solutions on net which talk about other fdf files but not sure if that is the best way to go.
if anyone has any experience of implementing something i would appreciate and opinions on it.
many thanks
Not clear on your problem. Is this an update process where you want to display the data, allow changes and then create a new PDF? If that is the case why get complicated and try to change the existing PDF? Just create a new one and overwrite the old one (or create it under whatever name the user chooses)? If I am misunderstanding the situation then you need to explain it better.
hi sorry, if i was not clear.
basically i need to write data from my mysql database which is display on screen to a pdf which either creates the whole pdf with the field name for example:
title: dynamic data from database
or it writes to a pdf which has the fields in it already and the data just inserts into the blank spaces on pdf.
hope you can help.
many thanks
thanks for this i will look into it.
cheers
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.