/* Copyright by mcbSolutions in 2008 * */ if(!isset($_GET['fn'])) { ?>
Die angegebene Datei wurde nicht gefunden.exit; } $path = getcwd()."/"; $file = pathinfo($_GET['fn'], PATHINFO_BASENAME).".vcf"; $fullFile = "$path$file"; if(!file_exists($fullFile)) { ?>
Die angegebene Datei wurde nicht gefunden.exit; } header("Content-Disposition: attachment; filename=$file"); header("Content-Length: {filesize($fullFile)}"); header("Connection: close"); header("Content-Type: text/x-vCard; name='$file'"); readfile($fullFile); ?>