回答1:
php获取from提交的数据
例:from传递一些参数
username: xx
password:xxx
php $_POST的数组为:
【username: xx,password:xxx】
而前端传递:
username[]: xx
password[]:xxx
php $_POST的数组就为:
【username: [xx],password:[xxx]】
回答1:
php获取from提交的数据
例:from传递一些参数
username: xx
password:xxx
php $_POST的数组为:
【username: xx,password:xxx】
而前端传递:
username[]: xx
password[]:xxx
php $_POST的数组就为:
【username: [xx],password:[xxx]】