乘法变量 - 一个数组
在我的网站上,我有一个带有 3 个复选框的表单。每个复选框都有不同的值。
示例:
$upgrade = inputFilter($_POST['upgrade']); //Has the value of "1"
$masterU = inputFilter($_POST['masteru']); //Has the value of "2"
$extended = inputFilter($_POST['extended ']); //Has the value of "3"
我必须将所有 3 个变量插入到数据库中的一个单元格中,它应该如下所示: 1,2,3
如何获得这一点?
On my website, I have a form, with 3 checkboxes. Each checkboxes has a different value.
Example:
$upgrade = inputFilter($_POST['upgrade']); //Has the value of "1"
$masterU = inputFilter($_POST['masteru']); //Has the value of "2"
$extended = inputFilter($_POST['extended ']); //Has the value of "3"
I have to insert all of the 3 variables, into ONE cell in my database, and it should look like this: 1,2,3
How can this be obtained?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 implode 构建逗号分隔列表。
Use implode to build a comma separated list.