I had used the following code.
<?php
header("Content-Type: application/pdf");
$pdfFile="readme.pdf#page=10";
?>
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<a href="http://<?php echo $pdfFile; ?>">Click Here</a>
</body>
</html>
But it showing an alert like following
File does not begin with '%PDF-'
After clicking alert showing a black screen..
can u please send me the entire code?
Thanks...