我正在使用jQuery mobile将表单数据传递给PHP脚本,但我无法访问PHP中的数据。我试过这个:
$.post('http://127.0.0.1/tum_old/testi.php', $('form#login_form').serialize(), function(data) {
console.log(data);
});
通过
检查通过$('form#login_form').serialize()
传递的数据
var param = $('form#login_form').serialize();
console.log(param);
我明白了:
username=ihfufh&passwordinput=dfygfyf
PHP脚本:
<?php
$username = $_POST['username'];
echo "$username";
?>
给我这个错误:
未定义索引:用户名
答案 0 :(得分:2)
序列化并使用以下内容发送数据:
jQuery / AJAX
$('#form').on('submit', function(e){
e.preventDefault();
$.ajax({
// give your form the method POST
type: $(this).attr('method'),
// give your action attribute the value yourphpfile.php
url: $(this).attr('action'),
data: $(this).serialize(),
dataType: 'json',
cache: false,
})
})
然后在PHP中接收它:
<?php
// assign your post value
$inputvalues = $_POST;
$username = $inputvalues['username'];
?>