保存下拉列表中的值
这是我的情况,我有 2 页,一页用于选择值,一页用于编辑与该值关联的数据库相关内容。
现在,我不知道(并且已经研究了相当多)如何将从下拉列表中选择的值保存到 PHP 的变量中。
有什么想法吗?
Here's my situation, I have 2 pages, one for selecting a value and one for editing database related things which are associated to that value.
Right now, I have no knowledge ( and have researched a fair bit ) on how to save the value selected from the drop down list into a variable from PHP.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
HTML:
页面.php:
HTML:
page.php:
它的两步:
第一个html:
用于将值发送到databasethings.php脚本。(
然后在databasethings.php中:
这将从html中捕获value1、2或3到php中的$myvalue中
Its two step:
First html:
Its for sending the value to databasethings.php script.(
Then in databasethings.php:
This will catch value1, 2 or 3 from html into $myvalue in php
我假设您正在向页面提交表单以编辑数据库相关内容。在该页面上使用 $_REQUEST['the_name_of_the_select_box']
选择值将位于
I presume you are submitting a form to the page for editing database related things. On that page use $_REQUEST['the_name_of_the_select_box']
the select value will be in
可能喜欢这个
might like this