使用 MkDir 创建目录,然后将文件夹附加到 Html 文档?

发布于 2024-12-01 14:24:04 字数 495 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゞ花落谁相伴 2024-12-08 14:24:04

注意:建议将这些文件夹放在与根目录不同的目录中,例如 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

扮仙女 2024-12-08 14:24:04

还有另一个请求,返回用户目录中的所有文件夹并将它们放在页面上。即也在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文