|
发表于 2004-6-12 15:03:22
|
显示全部楼层
[code:1]$sql="insert into employees (first,last,address,position) values ('$first','$last','$address','$position')"; [/code:1]
这样用:
[code:1]$sql="insert into employees (first,last,address,position) values (' ".$_POST['first']." ',' ".$_POST['last']." ',' " . $_POST['address']. " ',' ".$_POST['position']." ')"; [/code:1]
这样应该也可以
[code:1]$sql="insert into employees (first,last,address,position) values (`$_POST['first']`,`$_POST['last']`,`$_POST['address']`,`$_POST['position']`)"; [/code:1]
我记得在用 "" 引起来的字符串里,php 会自动把变量进行转换。
也就是说:
$a="str1";
echo "print $a";
是出的结果是:
print str1
其实你只要 echo 能显示出正确的 SQL 语句就可以了~~ |
|