Home > Backend Development > PHP Tutorial > 获取表单提交的数据转为数组给后台

获取表单提交的数据转为数组给后台

WBOY
Release: 2016-06-06 20:20:19
Original
2048 people have browsed it

怎么取到表单中的值 转化为一个字符串,给到后台呢

回复内容:

怎么取到表单中的值 转化为一个字符串,给到后台呢

首先,GET 请求不能直接传递 JSON,如果是 POSTPUT 等有请求体的请求,需要将 Content-Type 设置为 appliaction/json,然后 body 就可以塞数组/对象了。

表单的name设置为统一的名字,例如name[],这样在php后台接收到的$_POST[name]就是一个数组

就不能传到后台之后在拼接成字符串?



form标签为 method="post"
$_POST['p_name']就是一个数组

一般存数据库的格式:
1、JSON
2、数组转换或拼成字符串。
3、直接存数组的字符串格式。(PHPCMS这样做的)

需要知道具体业务再定如何存储

Related labels:
php
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