当我运行我的 php 编码时,从页面 addresident1.php 输入,将数据发布到 addresident2.php 进行处理,它显示:
解析错误:语法错误,第 5 行 F:\xampp\htdocs\1\1\addresident2.php 中的意外 '","' (T_CONSTANT_ENCAPSED_STRING)
这是我在第 5 行的代码,在页面 addresident2.php 中:
$query = "insert into resident
values("",".$_POST["txtICNo"].",'".$_POST["txtName"]."','".$_POST["txtNo"]."',
'".$_POST["txtHouse"]."','".$_POST["txtKL"]."','".$_POST["txtTelHouse"]."',
'".$_POST["txtTelMobile"]."','".$_POST["txtJantina"]."','".$_POST["txtKaum"]."',
'".$_POST["txtJenisPenghuni"]."')";
上面某些部分的“”表示插入 Null 值。
我想知道我的符号“或”错了。请帮我检查一下。谢谢。