如何在不使用数据库的情况下在php中提交时显示下面表单的记录?

发布于 2024-09-06 07:09:13 字数 168 浏览 2 评论 0原文

如何利用隐藏变量作为数组来连续提交数据,以便可以用它们来显示记录列表。

我有一个带有 4 个文本字段和一个文件上传字段的表单。当我提交表单时,它应该附加到需要显示在表单下方的列表中,这样这些值不会存储在数据库中。

所以在这种情况下,我如何使用 post 数组来收集数据并显示在下面的列表中?

How to make the use of hidden variables as array for consecutive submission of data so that they can be used to display the records list.

I have a form with 4 text fields and a file upload field.. as i submit he form it should get appended to the list which needs to be displayed below the form, such that these values are NOT stored in the DB..

So in this case how can i use the post array to collect the data and display in the list below?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅浅淡淡 2024-09-13 07:09:13

您可以使用隐藏的输入字段将输入数据传递到下一页。示例:

<form method="POST">
Name: <input type="text" name="names[]" />
<input type="submit" value="Add" />
<?php
foreach ($_POST['names'] as $name)
{
        echo '<input type="hidden" name="names[]" value="'.$name.'"/>';
}
?>
</form>
<?php
print_r($_POST['names']);
?>

但是,这不适用于上传的文件。您必须在获取它们时保存它们并在表单中传递文件名。

另一种方法是使用会话。这些允许您在页面点击之间保存一些用户数据。

You can use hidden input fields to pass the input data to the next page. Example:

<form method="POST">
Name: <input type="text" name="names[]" />
<input type="submit" value="Add" />
<?php
foreach ($_POST['names'] as $name)
{
        echo '<input type="hidden" name="names[]" value="'.$name.'"/>';
}
?>
</form>
<?php
print_r($_POST['names']);
?>

However, this will not work for the uploaded files. You have to save these as you get them and pass the filename in the form.

An alternative to this is to use sessions. These allow you to save some user data between page hits.

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