0

在 php 中,我有一个表单,用户可以通过单击按钮查看评论

echo "<td> <form action=\"viewComments.php?id=$pid\" method=\"post\">";

当我将 viewComments.php 放在同一个文件夹中时,这可以正常工作。我想组织我的代码并将 viewComments.php 放在一个文件夹中,让我们说“动作”。我该怎么做呢?换句话说,如果我想访问名为“actions”的文件夹中的“viewComments.php”,如何在此处反映呢?回声“”;有人可以帮忙吗?

我有 blog_created/thisScript.php - 这里有我的代码,而我的 viewComments.php 在 blog_created/actions/viewComments.php 中......它不起作用......它说 - 请求的 URL /~user/blog_created/在此服务器上未找到 viewComments.php

4

1 回答 1

1
echo "<td> <form action=\"actions/viewComments.php?id=$pid\" method=\"post\">";

这是要你实现的吗?

于 2012-07-08T20:42:22.173 回答