Home > Backend Development > PHP Tutorial > PHP 关于表单传递变量的问题

PHP 关于表单传递变量的问题

WBOY
Release: 2016-06-20 12:45:40
Original
988 people have browsed it

在循环里







在对方接收 own 变量时 总是接收 own最后的一个值,怎么修改可以变成不同的值


回复讨论(解决方案)

如果循环的是整个表单,那么点哪个就得到哪个
如果循环的只是 own,那么应写作 ,得到的是全部 own,无法区分

改成  name='own[]' 这种数组形式,然后在PHP里print_r($_POST['own']);就能看到所有的值。

数组变量
name='row[]'

如果你的name='own' 是有多个 值,
那么可以name='own[]'
这样传递到服务端就是多个值的数组
接收的话,$_POST['own']; 

数组名用own[],接收用$_POST['own']; 

谢谢各位,这个方法我试了,接收错了我写成 $_post['own[]']哈哈,谢谢了

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template