<?php // The location of the PDF file // on the server $filename = "http://smellfield.com/cardamom_guide_smellfield.pdf"; // Header content type header("Content-type: application/pdf"); header("Content-Length: " . filesize($filename)); // Send the file to the browser. readfile($filename); ?>