时间:2021-07-01 10:21:17 帮助过:29人阅读
品牌查询
在 index4.php 中 print_r($_POST);
在你的表单页 查看网页源代码 看看有没有问题
没有问题。这是浏览后的页面。
print_r ($_POST) 打印出一个数组,没有错误,但是index4就是接收不到数据。很奇怪!
index4.php 不就是接受页面post过来的数据。
那你 index4.php 是怎么写的?
都能 print_r($_POST); 出内容,怎么说是没数据呢?
是提效到本页面的,即index4.php
接收数据分别用
$sexual = $_POST['sexual'];$branch = $_POST['branch'];$money = $_POST['money'];$startdate = $_POST['startdate'];$enddate = $_POST['enddate'];
$sexual = $_POST[' Sexual'];
$branch = $_POST[' Branch'];
$money = $_POST[' Money'];
$startdate = $_POST['startdate'];
$enddate = $_POST['enddate'];
php 的变量是区分大小写的,当然关联键也是区分大小写的
$a = 1;
$A = 2;
$r['A'] = 3;
$r['a'] = 4;
大小写!!!!!!
是因为大小写问题
$sexual = $_POST[' Sexual'];
$branch = $_POST[' Branch'];
$money = $_POST[' Money'];
$startdate = $_POST['startdate'];
$enddate = $_POST['enddate'];
php 的变量是区分大小写的,当然关联键也是区分大小写的
$a = 1;
$A = 2;
$r['A'] = 3;
$r['a'] = 4;
大小写!!!!!!
是因为大小写问题
大小写!!!!!!