我正在創建一個登錄系統,我試圖讓用戶登錄後會顯示用戶名或名字。我想出瞭如何顯示用戶的ID,但我想要用戶名(uid是如何設置的)或名字(首先是我如何設置)。登錄後如何顯示用戶名或名或姓或名?
<?php
if (isset($_SESSION['id'])) {
echo $_SESSION['id'];
echo "<div class='welcome_login'><h1>Welcome! Thanks for logging in!!</h1></div>";
} else {
echo "<div class='intro_page'><h1>You must login or signup!</h1></div>";
}
?>
當你說_set up_你是否意味着你將'username'和'firstname'存儲在PHP會話變量中? – TheValyreanGroup
你必須在使用會話的所有頁面的頂部有'session_start();'。 –