使用 php implode 组合表单文本字段值
我有 3 个文本字段,我想在使用连字符组合它们后传递这些值。
<input type="text" name="val[]" />
<input type="text" name="val[]" />
<input type="text" name="val[]" />
最好帮助我使用 php 内爆选项。
提交后如何找回?
谢谢。
I have 3 text fields and I want to pass the values after combining them using a hyphen.
<input type="text" name="val[]" />
<input type="text" name="val[]" />
<input type="text" name="val[]" />
Preferably help me with php implode option.
How do i retrieve it after submit ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发送表单后,您的值将以数组形式存储在
$_POST['val']
或$_GET['val']
中,具体取决于表单的方法。您可以简单地通过以下方式组合它们:
After sending the form, your values will be in
$_POST['val']
or$_GET['val']
as an array, depending on the method of your form.You can combine them simply by:
谢谢。一旦字段具有最大值,我如何将焦点更改到下一个字段:
看看这是否有效:
thanks. how do i change focus to next field once a field has max values:
See if this works: