好的,我正在为一家房地产公司建立一个数据库,并在3或4个月前开始使用PHP。我有这个错误,“你的SQL语法有错误;请查看与你的MySQL服务器版本相对应的手册,以便在'VALUES'附近使用正确的语法('3605 2nd Street','','gfnfgnbfgn',' MD','21230','dfgbfgnbg','','','在第2行“。
以下是涉及的代码,有一个表单,我使用POST方法将信息转发到此页面。
<?php
session_start();
require('connect.php');
$address = $_POST["Address"];
$apt = $_POST["Apt #"];
$city = $_POST["City"];
$state = $_POST["State"];
$zip = $_POST["Zip"];
$tenant1 = $_POST["Tenant1"];
$tenant1phone = $_POST["Tenant 1 Phone"];
$tenant1email= $_POST["Tenant 1 Email"];
$tenant2 = $_POST["Tenant 2"];
$tenant2phone = $_POST["Tenant 2 Phone"];
$tenant2email= $_POST["Tenant 2 Email"];
$tenant3 = $_POST["Tenant 3"];
$tenant3phone = $_POST["Tenant 3 Phone"];
$tenant3email= $_POST["Tenant 3 Email"];
$daterented = $_POST["Date Rented"];
$rent = $_POST["Rent"];
$leaseexp= $_POST["Lease Expiration"];
$datedue = $_POST["Date Due"];
$vacant = $_POST["Vacant"];
$rentpaid= $_POST["Rent Paid"];
$amountdue = $_POST["Amount Due"];
$fee = $_POST["Fee"];
$secdeposit= $_POST["Security Deposit"];
$leadcert = $_POST["Lead Cert"];
$leadcertdate= $_POST["Lead Cert Date"];
$repairlimit= $_POST["Repair Limit"];
$key = $_POST["Key #"];
$bedrooms= $_POST["Bedrooms"];
$bathrooms = $_POST["Bathrooms"];
$heat = $_POST["Heat"];
$appliances= $_POST["Appliances"];
$owner = $_POST["Owner"];
$owneraddress = $_POST["Owner Address"];
$ownercity = $_POST["Owner City"];
$ownerstate= $_POST["Owner State"];
$ownerzip = $_POST["Owner Zip"];
$ownerphone1 = $_POST["Owner Phone 1"];
$ownerphone2 = $_POST["Owner Phone 2"];
$ownerother= $_POST["Owner Other"];
$owneremail = $_POST["Owner Email"];
$sql = ("INSERT INTO info (Address, Apt #, City, State, Zip, Tenant 1, Tenant 1 Phone,
Tenant 1 Email, Tenant 2, Tenant 2 Phone, Tenant 2 Email, Tenant 3, Tenant 3 Phone,
Tenant 3 Email, Date Rented, Rent, Lease Expiration, Date Due, Vacant, Rent Paid,
Amount Due, Fee, Security Deposit, Lead Cert, Lead Cert Date, Repair Limit, Key #,
Bedrooms, Bathrooms, Heat, Appliances, Owner, Owner Address, Owner City, Owner State,
Owner Zip, Owner Phone 1, Owner Phone 2, Owner Other, Owner Email)
VALUES ('$address', '$apt', '$city', '$state', '$zip', '$tenant1', '$tenant1phone',
'$tenant1email', '$tenant2', '$tenant2phone', '$tenant2email', '$tenant3',
'$tenant3phone', '$tenant3email', '$daterented', '$rent', '$leaseexp', '$datedue',
'$vacant', '$rentpaid', '$amountdue', '$fee', '$secdeposit', '$leadcert',
'$leadcertdate', '$repairlimit', '$key', '$bedrooms', '$bathrooms', '$heat',
'$appliances', '$owner', '$owneraddress', '$ownercity', '$ownerstate', '$ownerzip',
'$ownerphone1', '$ownerphone2', '$ownerother', '$owneremail')");
var_dump($sql);
mysql_query($sql)or die(mysql_error());
if(mysql_affected_rows()>=1){
echo "<p>Entry Added</p>";
echo "<a href='index.php'>Home</a>";
}else{
echo "<p>Entry Not Updated</p>";
}
?>
我在这个页面上有完全相同的问题,它编辑了一行
<?php
session_start();
require('connect.php');
$id = $_GET["id"];
$address = $_POST["Address"];
$apt = $_POST["Apt #"];
$city = $_POST["City"];
$state = $_POST["State"];
$zip = $_POST["Zip"];
$tenant1 = $_POST["Tenant 1"];
$tenant1phone = $_POST["Tenant 1 Phone"];
$tenant1email= $_POST["Tenant 1 Email"];
$tenant2 = $_POST["Tenant 2"];
$tenant2phone = $_POST["Tenant 2 Phone"];
$tenant2email= $_POST["Tenant 2 Email"];
$tenant3 = $_POST["Tenant 3"];
$tenant3phone = $_POST["Tenant 3 Phone"];
$tenant3email= $_POST["Tenant 3 Email"];
$daterented = $_POST["Date Rented"];
$rent = $_POST["Rent"];
$leaseexp= $_POST["Lease Expiration"];
$datedue = $_POST["Date Due"];
$vacant = $_POST["Vacant"];
$rentpaid= $_POST["Rent Paid"];
$amountdue = $_POST["Amount Due"];
$fee = $_POST["Fee"];
$secdeposit= $_POST["Security Deposit"];
$leadcert = $_POST["Lead Cert"];
$leadcertdate= $_POST["Lead Cert Date"];
$repairlimit= $_POST["Repair Limit"];
$key = $_POST["Key #"];
$bedrooms= $_POST["Bedrooms"];
$bathrooms = $_POST["Bathrooms"];
$heat = $_POST["Heat"];
$appliances= $_POST["Appliances"];
$owner = $_POST["Owner"];
$owneraddress = $_POST["Owner Address"];
$ownercity = $_POST["Owner City"];
$ownerstate= $_POST["Owner State"];
$ownerzip = $_POST["Owner Zip"];
$ownerphone1 = $_POST["Owner Phone 1"];
$ownerphone2 = $_POST["Owner Phone 2"];
$ownerother= $_POST["Owner Other"];
$owneremail = $_POST["Owner Email"];
$sql = "UPDATE info
SET
Address='$address',
Apt #='$apt',
City='$city',
State='$state',
Zip='$zip',
Tenant 1='$tenant1',
Tenant 1 Phone='$tenant1phone',
Tenant 1 Email='$tenant1email',
Tenant 2='$tenant2',
Tenant 2 Phone='$tenant2phone',
Tenant 2 Email='$tenant2email',
Tenant 3='$tenant3',
Tenant 3 Phone='$tenant3phone',
Tenant 3 Email='$tenant3email',
Date Rented='$daterented',
Rent='$rent',
Lease Expiration='$leaseexp',
Date Due='$datedue',
Vacant='$vacant',
Rent Paid='$rentpaid',
Amount Due='$amountdue',
Fee='$fee',
Security Deposit='$secdeposit',
Lead Cert='$leadcert',
Lead Cert Date='$leadcertdate',
Repair Limit='$repairlimit',
Key #='$key',
Bedrooms='$bedrooms',
Bathrooms='$bathrooms',
Heat='$heat',
Appliances='$appliances',
Owner='$owner',
Owner Address='$owneraddress',
Owner City='$ownercity',
Owner State='$ownerstate',
Owner Zip='$ownerzip',
Owner Phone 1='$ownerphone1',
Owner Phone 2='$ownerphone2',
Owner Other='$ownerother',
Owner Email='$owneremail'
WHERE id='$id'";
var_dump($sql);
mysql_query($sql)or die(mysql_error());
if(mysql_affected_rows()>=1){
echo "<p>Entry Updated</p>";
echo "<a href='index.php'>Home</a>";
}else{
echo "<p>Entry Not Updated</p>";
}
?>
我看了15次,似乎无法找到语法错误。我看得越多,它看起来就像一堵巨大的文字墙。也许更有经验的人可以看看它,并立即看到它。我在不同的站点中使用了几乎相同的代码,没有任何问题,唯一的区别是这有更多的变量。在此先感谢,这个网站和伟大的人一直是学习PHP的救星!
答案 0 :(得分:1)
您需要使用``quotes。
将所有列名称包含在其中像这样:
`Owner Address`
最好的办法可能是用空格重命名所有列名,用空格替换空格。
答案 1 :(得分:0)
这个例子:
select apt # from mytable
将被解释为select apt
,在#
之前和之后的所有内容都将被解释为注释。您会注意到SO的语法突出显示也是如此。
这样可行:
select `apt #` from mytable
甚至:
select `apt #` from `mytable`