# @author: Simon Bowie # @purpose: Display images from OPS API image service include '../ops_api.php'; if(isset($_GET["doc_ref"])){ $image_output = get_images($_GET["doc_ref"]); //Display the image in the browser header('Content-type: application/pdf'); echo $image_output; } ?>