show/hide this revision's text 2 First post was accidental

if you keep your files in the update directory on example.com, this PHP script should download them for you given the request previously mentioned. (your update would be yourprogram.1.2.4.exe

$version = $_GET['version'];    
$filename = "yourprogram" . $version . ".exe";
$filesize = filesize($filename);
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: post-check=0, pre-check=0");
header("Content-type: application-download");
header('Content-Length: ' . $filesize);
header('Content-Disposition: attachment; filename="' . basename($filename).'"');
header("Content-Transfer-Encoding: binary");

This makes your web browser think it's downloading an application.

show/hide this revision's text 1

header("Pragma: public"); header("Expires: 0"); header("Cache-Control: post-check=0, pre-check=0"); header("Content-type: application-download"); header('Content-Length: ' . $filesize); header('Content-Disposition: attachment; filename="' . basename($filename).'"'); header("Content-Transfer-Encoding: binary");