我尝试在<!doctype>
之上进行会话..但是当我使用PHPtester检查语法时,输出是:
&#34; FATAL ERROR语法错误,意外&#39;是&#39; (T_STRING)在第1行和第34行;
语法:
<?php session_start(); ?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<body>
<form id="userForm" method="post" action="form-process.php">
<div>
<fieldset>
<legend>User Information</legend>
<div id="errorDiv">
<?php
if(isset($_SESSION['error']) && isset($_SESSION['formAttempt'])){
unset($_SESSION['formAttempt']);
print "Errors encountered<br />\n";
foreach($_SESSION['error'] as $error){
print $error."<br />\n";
} //end foreach
}//end if
?>
</div>
答案 0 :(得分:0)
你在谈论http://phptester.net/吗?这太荒谬了,它改变了检查代码。
试试http://sandbox.onlinephpfunctions.com/ - 你的代码很好。