我一直在
Parse error: syntax error, unexpected T_STRING in /newref-exec.php on line 6
我已经阅读了大量不同的解决方案来解决这个问题,但似乎无法正常工作
<?php
// connect to database
require($DOCUMENT_ROOT . "connect.php");
// check for blank entries
if ($_POST[doi2] == "NULL"){
echo "No Data to add";
}
else
{
$sql="INSERT INTO ref (uid, date, doi, title, year, journal)
VALUES
('1','CURDATE ()','$_POST[doi2]','$_POST[title2]','$_POST[year2]','$_POST[journal2]')";
if (!mysqli_query($link,$sql,$con))
{
die('The Reference could not be added, beacuse of SQL Error:' . mysql_error());
}
echo "New Reference Added";
}
?>
答案 0 :(得分:2)
这一行,关键需要有引号,
if ($_POST['doi2'] == "NULL"){
此外,如果要检查empty
条目,则可能需要执行此操作,
if ($_POST['doi2'] == ""){ //checking "NULL", checks for a string 'NULL'
答案 1 :(得分:0)
以下面的方式重写代码。
<?php
// connect to database
require($DOCUMENT_ROOT . "connect.php");
// check for blank entries
if ($_POST['doi2'] == null){
echo "No Data to add";
} else {
$doi2 = $_POST['doi2'];
$title2 = $_POST['title2'];
$year2 = $_POST['year2'];
$journal2 = $_POST['journal2'];
$sql="INSERT INTO ref(uid, date, doi, title, year, journal) VALUES('1', 'CURDATE()', '$doi2', '$title2', '$year2', '$journal2')";
if (!mysqli_query($link, $sql, $con))
{
die('The Reference could not be added, beacuse of SQL Error:' . mysql_error());
}
echo "New Reference Added";
}
?>