包含从查询字符串中获取文件夹和文件名的文件的最佳方法是什么?
在myServer.com/data中有数百个文件夹,每个文件夹中有几个文件。这些是纯 html 文件。
在myServer.com/code中是一个 php targetPage.php
我可以像这样构建一个 URL:
http://www.myServer.com/code/targetPage.php?folder=folder132&name=file23
读取源文件夹中的源文件并将源“div”的内容包含为目标页面中“targetDiv”的 innerHTML 的 php 是什么?
<body><div id="targetDiv">This is the place holde div</div>
我对php相当陌生,因此提出了这个问题。