Hi...
I have a problem to load a PDF file which is stored on another machine.I had loaded the PDF on the same machine using following PHP script.Here I had used a hyper link to load PDF.
<?php
$file="first";
$pdfFile=$file.".pdf#page=1";
?>
<a href="<?php echo $pdfFile; ?>" target="_blank" > Click to view PDF</a>
This is working properly.But I had tried to access the PDF which is on another machine using IP address as follows
<?php
$file="//192.x.x.x/e:/pdf/first";
$pdfFile=$file.".pdf#page=1";
?>
This script is not working...:(
Any body have any idea please help me.It is very urgent for my project.