我收到错误,说明此脚本第2行意外的T_STRING:
<? php
session_start();
$incidentKey = $_SESSION['incidentKey'];
$incidentDetailsQuery = mysql_query("SELECT * FROM incidents WHERE incidentKey='".$incidentKey."'");
while ($incidentDetails = mysql_fetch_assoc($incidentDetailsQuery);
?>
尽管通过论坛堆看,我没有运气。当代码以这样的方式启动时,这甚至会出现在第2行意外的T_STRING错误:
<? php
$incidentKey = $_SESSION['incidentKey'];
etc.....
我已经浏览了所有其他包含,但找不到导致此脚本的任何遗漏终结符。谁能想到为什么我会收到这个错误?
答案 0 :(得分:1)
删除
中的空格 <? php
使其成为
<?php