How to download a file off a network drive?

时间:2018-06-04 17:21:05

标签: php html internet-explorer

As the title says. How can i download a file off a network drive? I currently have this, it opens the file in my Internet Explorer browser but it's supposed to download it. (Or give the option to open or download). $search is the input given by the user.

<a type="button" class="UitslagKnop" href="file:\\\\domain\map\map\map\map\<?php echo $search; echo '_REV_'; echo $Revlv2; echo '_uitslag';?>.dxf" download><span>Uitslag</span></a>

1 个答案:

答案 0 :(得分:2)

You don't need the file:\\ in the href of the link. Testing your code locally doesn't initiate the download like you're attempting, but removing that prefix in the href does. Simply use:

<... href="\domain\map\map\map\map\<?php echo $search.'_REV_'.$Rev1v2.'_uitslag';?>.dxf" ...>
相关问题