[PHP-DB] BinaryWrite in PHP?

2003-02-12 Thread Ohlson Stefan
Hi! I want to let the user to be able to open or save a textdocument with text that I create on the fly with some select-statements. You know when you click on a button or a link and you get a question if you what to Open the file or or Save it. In ASP I can use Response.BinaryWrite, how can I

RE: [PHP-DB] BinaryWrite in PHP?

2003-02-12 Thread George Pitcher
header(Content-Disposition: inline; filename=$fpd); header(Content-Title: $fpd); header(Content-Length: $len); readfile($fpd); ? George -Original Message- From: Ohlson Stefan [mailto:[EMAIL PROTECTED]] Sent: 12 February 2003 10:05 am To: [EMAIL PROTECTED] Subject: [PHP-DB] BinaryWrite