/** * @file * Reads "/files/Clayton-Christensen-ECS-2009.mp3", and sends it to the response * with "Content-Disposition" headers set such that it forces a "Save As" window */ header('Content-Disposition: attachment; filename=Clayton-Christensen-ECS-2009.mp3'); readfile('./files/audio/Clayton-Christensen-ECS-2009.mp3'); exit;