PHP 数据从一个 MySQL 表中获取,显示给用户,然后将新数据加上该数据写入新表
好吧,这可能听起来有点令人困惑,但我有一个表格,根据用户的选择列出课程地点和日期。我希望用户浏览这些字段,然后在第三个提交按钮上我向他们显示课程信息。我问如何在 php 中获取第一个查询的回显并使用它将其上传到另一个表。我可以只使用 MySQL Links 吗?
OK that probably sounded a bit confusing but what I have is a table that spits out courses locations and dates depending on what the user chooses. I than want the user to go through the fields and than on the 3rd submit button I have the course information displayed to them. I'm asking how in php i can take the echo from the first query and use that to upload it to the other table. Would I just be using MySQL Links?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有多个页面,则可以使用
$_SESSION
变量来存储数据,以便在准备时使用。如果您有一个页面包含多个表单,则可以使用
字段来保存数据,直到您准备好为止(它将存储在 <每次提交表单时,代码>$_POST)。
然后,准备好后,从
$_SESSION
或$_POST
数据中提取信息并运行查询。对于 $_POST 解决方案:
If you have multiple pages, you can use
$_SESSION
variables to store the data for when you're ready for it.If you have one page, with multiple forms, you can use
<input type='hidden' />
fields to hold the data until you're ready for it (it will be stored in$_POST
each time you submit the form).Then, when you're ready, pull the info out of the
$_SESSION
or$_POST
data and run your query.For the $_POST solution: