Christian,

You'll need to prompt the download by sending the appropriate headers.
Something like..

<a href=http://www.mydomain.com/downloadmyfile.php>Download</a>

<? // downloadmyfile.php
header("Content-Type: application/zip");
header("Content-Disposition: attachment");
readfile("file.zip");
?>

This is untested but from my experience it should work.

Good luck,
Kevin

----- Original Message -----
From: "Christian Ista" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 19, 2002 1:21 PM
Subject: [PHP] Click....download and update


> Hello,
>
> I'd like when I click on a link <a href=http://www.website.com/file.zip>
> update a table and start the download without change the page.
>
> Could you tell me how to do ?
>
> Christian,
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to