如何在不使用数据库的情况下在php中提交时显示下面表单的记录?
如何利用隐藏变量作为数组来连续提交数据,以便可以用它们来显示记录列表。
我有一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用隐藏的输入字段将输入数据传递到下一页。示例:
但是,这不适用于上传的文件。您必须在获取它们时保存它们并在表单中传递文件名。
另一种方法是使用会话。这些允许您在页面点击之间保存一些用户数据。
You can use hidden input fields to pass the input data to the next page. Example:
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.