perl mysql (3) perl CGI (3)
Exchange Links About this site Links to us 
|
General :: Programming :: perl :: perl CGI
CGI = Common Gateway Interface, a specification for transferring information between a web server and a CGI program. Here you find code snippets for CGIs written in perl.
Articles:
This list is sorted by recent document popularity (not total page views).
New documents will first appear at the bottom.
Featured Article
Perl script on web server sends Excel file to browserQuestion: I need to have my web site generate an Excel worksheet on the fly (a database export) and send it to the user's webbrowser. How can I do that?
Answer: The following assumes that you export a simple sheet containing strings and numbers, no formulas.
In this case, you can generate a CSV file (comma separated values) and set the mime type to applicatioon/octet-stream.
If you perl script is called as /cgi-bin/exportcsv.pl then the downloaded file will by default be named
exportcsv.pl.xls (using alternative mime type application/vnd.ms-excel)
To suggest a specific file name (other than the script name, use the Content-Disposition header field. This field allows you to provide other information as well, e.g.
- creation-date
- modification-date
- read-date
- size
Note:
The size parameter indicates just an approximate size of the file in octets. It does not have to be the exact size. This information can be used by the client software (web browser) to pre-allocate space before attempting to store the file, or to determine whether enough space exists.
For the full syntax, see RFC 2183
 | |  | | print "Content-type: application/vnd.ms-excel\n";
print "Content-Disposition: attachment;filename=users.csv\n\n";
print "Content-type: application/octet-stream\n";
print "Content-Disposition: attachment;filename=users.csv\n\n";
print '"1","Test, first one"' . "\n";
print '"2","Test, last one"' . "\n";
| |  | |  |
|
| Most recent comments
2010-03-19 07:48:04:
by anonymous
in Male Dating Scammers
on Dating scammer Charles Bill:
Charles Bill with the email address of bill_c55555@yahoo.com is apparently actually Charle (no s on end) Adeniyi Akinbo of Lagos Nigeria. At least that's who he asked the money to be sent to. Howeve ... read more
|
2010-03-19 06:24:25:
by anonymous
in Dating Scams
on Dating scammer Rhoda Naa from Accra, Ghana:
Yes Vida Odemety is a confirmed scam. This is a pic. of her on her email Vida_freshlove@live.com. She is using a porn star. I am going to tell her/he/who ill send them five dollars for making me laugh ... read more
|
2010-03-19 06:14:24:
by anonymous
in Dating Scams
on Dating scammer pretty:
Ok I will look at that stuff Ojas TY, but the funny thing is this scammer just sent me the nude pic and asking for money.
So I am going to spring it on them, with a link to this site! What i ... read more
|
2010-03-19 06:08:06:
by anonymous
in Dating Scams
on Dating scammer Roselin Jemba jembarose@yahoo.com from Monrovia, Senegal:
зачем вы это делаете? глупо.
|
|
2010-03-19 05:42:20:
by [hidden]
in Dating Scams
on Dating scammer Ekaterina - Katrin:
Ho smesso l'altro giorno la corrispondenza con la dolce Ekataterina o Svetlanka??
Quando mi ha chiesto di inviarle 400 Euro che doveva utilizzare per la Visa e altri documenti ai fini di un suo im ... read more
|
2010-03-19 04:42:42:
by anonymous
in Dating Scams
on Is this Russian girl scamming me? How to recognize scammers:
well my girl never asked for money, and i never gave her any, i simply had suspicions as i do for every friend i make over the net, and asked simple questions for her to prove that she was real. she ... read more
|
2010-03-19 03:31:32:
by [hidden]
in Dating Scams
on Dating scammer lyudmila polikarpova:
Yes she is, she is on yahoo personals in Lubbock, Texas too
|
2010-03-19 03:07:03:
by [hidden]
in Dating Scams
on Dating scammer Natalya:
Yep im talking to her too her is one of her pictures. They are patient with this one.
|
2010-03-19 02:11:38:
by anonymous
in Dating Scams
on Dating scammer Anna mandy:
Hello dear,
How are you today?.
Thanks hugely for your very nice reply, I hope you are in perfect health and i pray that this mail should find you in peace. well, It is a pleasure to read from ... read more
|
2010-03-19 01:03:29:
by anonymous
in Dating Scams
on Dating scammer Laura Trissy on BlackPlanet.com:
Hello and how are you doing today?I am happy to read from you.The weather is hot here.I am in NIGERIA.The antiques here are unique and cheap.I would make more profit when I get back to the states.I lo ... read more
|
|