关于php:解析错误:语法错误,意外”(T_ENCAPSED_AND_WHITESPACE)

Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE)

本问题已经有最佳答案,请猛点这里访问。

Full Error: Parse error: syntax error, unexpected ''
(T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or
variable (T_VARIABLE) or number (T_NUM_STRING)

它说错误在第12行。以下是我的资料:

1
2
$introduction="INSERT INTO Introduction (Title, Description)
VALUES ('$_POST[introtitle]','$_POST['introdescription']')"
;

任何帮助都将不胜感激!


您有额外的单引号:

1
2
$introduction="INSERT INTO Introduction (Title, Description)
VALUES ('$_POST[introtitle]','$_POST[introdescription]')"
;