I am trying to get a file on a server on a lan to get opened by a client pc via a hyperlink. For now I only need this to work on IE.
lets say that the filename is stored in the variable $sPath so that file_exists($sPath) returns true, and the server name is server_name. What would the hyperlink look like? here are a few of the many combinations I have used...
<a href="file:///intocloud$sPath">here</a>
<a href="file://intocloud$sPath">here</a>
<a href="file://///intocloud$sPath">here</a>
<a href="/////intocloud$sPath">here</a>
none of these work, and I've tried a few other things also.