2
我將我的網站移至另一個主機。以前的PHP版本是5.2,現在是5.3 當我登錄到我的網站,它顯示了錯誤:語法錯誤,意外的T_GOTO,期待T_STRING
Parse error: syntax error, unexpected T_GOTO, expecting T_STRING in /xx/xx/xx/xx on line xx
以下是代碼,第一行是錯誤行:
function goto($URL= "Back",$Target="self") //the error line
{
if ($URL == "Back")
{
echo "<HTML>\n<HEAD>\n<TITLE> untitle </TITLE>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset={$this -> Charset}\">\n</HEAD>\n<BODY>\n";
echo "<Script Language=\"Javascript\">history.go(-1)</Script>";
echo "\n</body></html>";
}
elseif
我應該如何改變我的語法?非常感謝!
goto是一個保留關鍵字。您需要更改名稱 – Ikke