PHP Parse error: syntax error, unexpected T_ENCAPSED_AND_WH_PHP教程
程序员文章站
2022-04-02 09:37:55
...
在程序初始时,遇到错误为:
PHP Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /var/www/developer/pp1/8-22.php教程 on line 5, referer: http://localhost/developer/pp1/form_input.html,在网上检查了一下,说是语法错误,检查了一下语法,发现8-22.php组后一行的echo语句有错无,应改为:
echo"产品将于三日内到达".$_GET['address']."
";
另外8-22.php代码为:
echo $_GET['company']."你好:
";
echo"感谢贵公司订购本公司的产品".$_GET['amount']."个,";
echo"货款共".($_GET['amount']*100)."元整.
";
echo"产品将于三日内到达$_GET['address']
";
?>
html代码
推荐阅读
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
-
PHP syntax error, unexpected $end 错误的一种原因及解决
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM, expecting 异常怎么解决
-
PHP解析错误 PHP Parse error: syntax error, unexpected '[' in
-
PHP syntax error, unexpected $end 错误的一种原因及解决
-
php报错syntax error, unexpected T_GOTO, expecting T_STRING,报错文件与行数指向以上代码,是什么原因