Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel Sheet Population

Status
Not open for further replies.

bizproducer

Programmer
Jan 20, 2005
19
US
I have a dilema... I want to build an HTML form that allows users to enter in quantities of items they want and then the data can be populated into a prebuilt excel spreadsheet that will be e-mailed to me. Don't really want to have a database - maybe just session variables. Is there anything canned out there that allows you to take form post data and place it in certain cells of an excel sheet so that it may be e-mailed to you?
 
just layout the formdata into a html table

then do a
Code:
header("Content-Type: application/vnd.ms-excel; name='excel'");
header("Content-disposition:  attachment; filename=myexcelfile.xls");
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top