2 回答

TA貢獻1111條經(jīng)驗 獲得超0個贊
你可以這樣做
<?php
if (isset($_SESSION['sessionId'])) {
readfile("/path/to/html/file/new_content.html");
} else{
readfile("/path/to/html/file/login.html");
}
?>

TA貢獻1856條經(jīng)驗 獲得超11個贊
您可以嘗試像這樣回顯您的 HTML 輸出
<?php
if (isset($_SESSION['sessionId'])) {
echo '<br><p>';
echo'This is the new content after login.';
echo '</p>';
} else{
echo '<br><p>';
echo ' This is the login page';
echo '</p>';
}
?>
如果你使用它,你會在查看源代碼中看到上面的代碼輸出:
<br>
<p>
  This is the content after login
</p>
second output
<br>
<p>
  This is the login page
</p>
PS 順便說一句,為什么你對一個回聲使用括號而另一個不使用括號???
- 2 回答
- 0 關(guān)注
- 221 瀏覽
添加回答
舉報