一件简单的事情。想要通过添加更改XAMPP页面视图,以便可以在主页上查看所有项目文件夹(如WAMP)。我正在关注this blog post并且它工作得很好(尽管整个事情并不完全匹配)。我链接到左侧导航区域的projects.php
页面,然后单击我可以获取所有项目文件夹。
但我希望主页上的所有项目列表,没有进一步的菜单点击。所以我试过,但失败了。我试过these code(我正在使用XAMPP 3.2.1)。
但是使用代码,我无法完成它。我对那里的两段代码感到困惑:
$handle = opendir(".");
和
if ( is_dir($file) && ($file != "..") && ($file != ".") ) {
由于我正在处理新的文件夹结构,我尝试使用:$handle = opendir("../");
- 但它始终缺少htdocs
文件夹。
我甚至尝试过简单的方式(在htdocs/xampp/index.php
中):
<frame name="content" src="start.php" marginwidth=20>
<frame name="content" src="../projects.php" marginwidth=20>
但最终失败了。
还尝试过:
$rp = realpath('../'); //showing: C:\xampp\htdocs
$handle = opendir("$rp"); //but opening the directory C:\xampp\htdocs\xampp