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
2008-05-12 15:45:58:
by anonymous
in Dating Scams
on Dating scammer mark wall:
yes the one who claims to be mark wall is a big time scammer, i have reported him to several other web sites, He ended up admitting it to me and said he was rich because of what he does, he actually ... read more
|
2008-05-12 15:44:16:
by [hidden]
in Dating Scams
on Dating scammer mark williams:
Hello found him with two different names on myspace, i contacted one of the woman he was writing too, but she didn´t believe and he is still there. so maybe this will help. I mean how dumb are they ... read more
|
2008-05-12 15:32:40:
by anonymous
in Dating Scams
on Dating scammer Yuliya Bechneva:
Yes for sure she has no shame. Been trying me to send her 400 US dollars to get a Visa.
Knew she is of no good. To me she is Nataliya Borisova. What on earth is wrong with her? Is there no way to ... read more
|
2008-05-12 15:26:35:
by klaus33604@arcor.de
in Dating Scams
on Dating scammer Ekaterina Rozhentsova:
Leute, wenn ihr E-Mails hier veröffentlicht, dann löscht eure Daten. Aus dem Header können nicht nur die guten Jungs lesen wie aus einem Kaffeesatz. Nein, ob ihr es glaubt oder nicht hier lungern a ... read more
|
2008-05-12 15:04:25:
by anonymous
in Dating Scams
on Dating scammer Ksenia Lihacheva from Diwnogorsk, Russia:
Banda, cómo ven a este wey??? Al parecer no ha leído nada de las páginas anteriores... Amigo, lee, informate, educate... esto ya es una comunidad virtual, expapate de información y sigue mandando ... read more
|
2008-05-12 14:45:28:
by [hidden]
in Dating Scams
on Dating scammer Rhoda Naa from Accra, Ghana:
I know her by the name Sharon Amponsah from Accra, Ghana. I recieved this photo some days ago. She wants me to help her to get to my country, by sending her money for ticket. She also says that she ha ... read more
|
2008-05-12 14:17:12:
by anonymous
in Dating Scams
on Dating scam artist Anastasiya Romanova:
ps I mis spelt her name, I meant to say Nataliya, also I noticed that name ' Anastasia Romanova' that is a totally fabricated name, the Romanova bit was extrapolated from the Romanov Dynasty (Tsar Nic ... read more
|
2008-05-12 14:03:18:
by [hidden]
in Other Scams
on The UK NATIONAL LOTTERY scam:
Austrialian Kingdom NATIONAL LOTTERY Dominions House LIme Kiln Close Stroke Gifford Bristol BS34 8SR Claims agent Dr. Kenneth Gold TEL: 2348032704711 Lottery Cordinator Peter Kovac. Send bank acc ... read more
|
2008-05-12 13:54:15:
by [hidden]
in Dating Scams
on Blacklisted Emails of Russian Dating Scammers:
Here is the last letter. i was never scammed just thought it was funny.
my dear friend jack, you remember in the last letter I asked you about your hobby. For some reason you to me have not ... read more
|
2008-05-12 12:51:43:
by [hidden]
in Other Scams
on Another dating / chat scam - USA/ Nigeria connection:
another of the conman
|
| |