我想有一个脚本(HTML或PHP),它将根据文本字段的输入从我们的网络打开文档。
因此,当我填写文字123456789
时,需要打开123456789.PDF
位置的文档\\server\documents\
。
答案 0 :(得分:0)
您想在用户浏览器中打开文档吗?
您可以使用一些Javascript:
<script type="text/javascript">
function go()
{
document.href = '\\server\documents\' + document.getElementById('toto').value + '.PDF';
}
</script>
<input type="text" id="toto" />
<button onclick="go()">Open me</button>
如果你想用PHP打开文件,只需连接字符串并使用file_get_contents
即可。