Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Generate and download a text file in javascript

All my research so far suggests this can't be done, but I'm hoping someone here has some cunning ideas. I have a form on a website which allows users to bulk upload lots of URLs to add to a list on ...
3
votes
1answer
922 views

php create file and send as attachment without actually creating the file

I know how to read a file on the server and attach it to an email in PHP, but I wanted to know if I could attach a file that is created by my script but not created on the server (kinda like a temp ...
1
vote
1answer
59 views

How to get Styled HTML to print a file with PHP

I was using this: http://softwaremaniacs.org/soft/highlight/en/ to highlight code, as seen here: http://www.u4ik.us/code and if you type in some code and hit go, it highlights it. You can change the ...
0
votes
1answer
136 views

The right way of generating pdf, xls, png files in webapp

I have to generate some reports of various file type(excel, pdf, png), based on the inputs of a web application. The application is written in PHP on a apache webserver. ATM, when users visit the ...
0
votes
3answers
557 views

Makefile: order of dependency evaluation

Assume a target foo.tar, that depends on a list of files foo.files, e.g. FOO_FILES := $(shell cat foo.files) foo.tar: foo.files $(FOO_FILES) tar -cf foo $(FOO_FILES) Now suppose that foo.files ...
0
votes
2answers
3k views

How do I create an Excel .xlsx file on-the-fly on ASP.NET Webforms site?

I need to export timetable from the database to Excel file on-the-fly on ASP.NET WebForms site. When user clicks "Export to Excel" link, he gets this file generated. I don't want to generate it ...