使用 MkDir 创建目录,然后将文件夹附加到 Html 文档?
我有一个 AZ 用户列表,我希望能够附加使用 mkdir()
创建的新文件夹,而不是手动将它们添加到 .html 页面。刚刚附上一个例子
例如:
UserList.html
Example user:
<a href="Obama/"><font size="4" color="yellow">Barrack Obama</a>
Mkdir Form:
<form action="Create.php" method="post">
Full Name: <input type="text" name="Username" /><br />
<input type="submit" value="Create User Folder"/>
</form>
Create.php
<?php
mkdir($_POST["UserName"], 0777);
?>
I have an A-Z list of users, and I'd like to be able to append the new folders created with mkdir()
instead of manually adding them to the .html page. Just attached an example
Eg:
UserList.html
Example user:
<a href="Obama/"><font size="4" color="yellow">Barrack Obama</a>
Mkdir Form:
<form action="Create.php" method="post">
Full Name: <input type="text" name="Username" /><br />
<input type="submit" value="Create User Folder"/>
</form>
Create.php
<?php
mkdir($_POST["UserName"], 0777);
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注意:建议将这些文件夹放在与根目录不同的目录中,例如 users/obama
您可以使用名为 readdir() 的函数,该函数将读取准备输出的目录内容。
http://au.php.net/readdir
这是有关在 php 中读取目录的一些信息的链接
http://www.dreamincode.net/forums/topic/13426-list-of-folders/page_查看_findpost_p_134369
NB: Suggest making these folders in a different directory then your root directory, maybe users/obama
You could use a function called readdir() which will read the contents of the directory ready for output.
http://au.php.net/readdir
Here is a link to some information about reading dir's in php
http://www.dreamincode.net/forums/topic/13426-list-of-folders/page_view_findpost_p_134369
还有另一个请求,返回用户目录中的所有文件夹并将它们放在页面上。即也在 php 中创建链接 html。如果您想在不重新加载页面的情况下执行此操作,可以使用 ajax。
have another request that returns all the folders in the user directory and put them on the page. i.e create the link html in php as well. you could use ajax if you want to do this without reloading the page.