Re: CGI automatic download file
Re: CGI automatic download file
- Subject: Re: CGI automatic download file
- From: "Mark J. Reed" <email@hidden>
- Date: Wed, 23 Jan 2008 12:44:14 -0500
On Jan 23, 2008 12:39 PM, Tiago Santarosa <email@hidden> wrote:
> Hi, in PHP to automatic download file is:
>
> header('Content-Disposition: attachment; filename="' . basename($l) . '"');
> header("Content-Type: application/octet-stream");
> header("Content-Transfer-Encoding: Binary");
The PHP header() command is just print() with the added feature that
it will complain if the output stream is already past the header
portion. There's no other magic.
However, stock AppleScript has no print() function; your basic output
options are log, display dialog, and say. This inability to directly
produce an output stream makes the whole concept of an AppleScript CGI
very odd. How are you doing such a thing, and why?
--
Mark J. Reed <email@hidden>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden