有人能告訴我在下面的行什麼失敗:錯誤回聲
echo '<div id="login"><div id="centrar_app"><label>Success. Created account. <a href='login_app.php'>Log In</a></label></div></div>';
我知道它必須是一個微小的愚蠢錯誤,但我不明白這一點。
感謝您的時間
有人能告訴我在下面的行什麼失敗:錯誤回聲
echo '<div id="login"><div id="centrar_app"><label>Success. Created account. <a href='login_app.php'>Log In</a></label></div></div>';
我知道它必須是一個微小的愚蠢錯誤,但我不明白這一點。
感謝您的時間
您正在混合使用單引號和雙引號。 href='login_app.php'
變化href="login_app.php"
試試這個,
echo '<div id="login"><div id="centrar_app"><label>Success. Created account. <a href="login_app.php">Log In</a></label></div></div>';
謝謝你,10分鐘,我會接受答案 – alberzyzz
使用此代碼替換您的代碼,它只是單引號的錯誤**(')**和雙引號**(「)**
echo '<div id="login"><div id="centrar_app"><label>Success. Created account. <a href="login_app.php">Log In</a></label></div></div>';
試試這個:
<?php
echo '<div id="login"><div id="centrar_app"><label>Success. Created account. <a href="login_app.php">Log In</a></label></div></div>';
?>
你混合雙引號用單引號,如下用途: -
echo '<div id="login"><div id="centrar_app"><label>Success. Created account. <a href="login_app.php">Log In</a></label></div></div>';
你可以用PHP變量使用當前的腳本如下圖所示: -
$login_url='login_app.php';
echo '<div id="login"><div id="centrar_app"><label>Success. Created account. <a href='.$login_url.'>Log In</a></label></div></div>';
雙引號HREF –
好了,屏幕上顯示時,PHP頁面加載 – alberzyzz
參見[什麼(白頁)此參考答案如何找到您的錯誤消息](http://stackoverflow.com/questions/12769982/reference-what-does-this-error-mean-in-php/12772851#12772851)。還要注意,這裏的代碼格式和任何像樣的編輯器都給出了關於問題出現在字符串的哪個位置的大問題。 – IMSoP