RE: [PHP] PHPBuilder.com Has an Easy File Upload Article, does any1 know

2002-03-06 Thread Boaz Yahav
Search http://www.weberdev.com for download. Sincerely berber Visit http://www.weberdev.com Today!!! To see where PHP might take you tomorrow. -Original Message- From: Caleb Carvalho [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 10:31 PM To: [EMAIL PROTECTED]

Re: [PHP] PHPBuilder.com Has an Easy File Upload Article, does any1 know

2002-03-06 Thread Tom Rogers
Hi Here is a script that will send any file for download, even .html files. I called it send.php ? $headertxt = Content-Disposition: attachment; filename=\.$filename.\; header(Content-Type: application/force-download);header($headertxt); $fd = fopen($filename,r); fpassthru($fd); ? usage is