?php $filename = $_GET['path']; $save_as = cornelia-w.vcf($filename); // this is the name the user sees. you could rename it to the contacts name, like 'Joe_Schmoe.vcf'... $c_type = 'text/x-vcard';//what file type? $file_size = filesize("$filename"); if ($fp = fopen("$filename", 'rb')) { Header('Content-Type: '. $c_type); // this depends on file type!!! Header('Content-Disposition: attachment; filename="'.$save_as.'"'); Header('Content-Length: '.$file_size); fpassthru($fp); } else { echo"cannot find file: $filename"; } ? Skip to content