第一行代码上意外的T_STRING

时间:2014-11-10 08:31:10

标签: php

我收到错误,说明此脚本第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.....

我已经浏览了所有其他包含,但找不到导致此脚本的任何遗漏终结符。谁能想到为什么我会收到这个错误?

1 个答案:

答案 0 :(得分:1)

删除

中的空格
  <? php 

使其成为

  <?php