0
我嘗試了不同的方式來成功登錄後獲取用戶名顯示。 得到它登錄,但不顯示用戶名。 有沒有人有小費? 在我login.success.php我現在只拿到了這個在我check_login.php嘗試幾件事情:登錄成功後顯示用戶名
<?php
session_start();
include "header.inc.php";
include "funksjoner.inc.php";
?>
後,我得到這個:
<?php if($count==1){
session_register("myusername");
session_register("mypassword");
header("location:login_success.php");
?>
我可以貼出來更多的腳本如果有必要的話。 如果有人可以讓我在這一個上減輕我的感激!
謝謝你們,這項工作很完美。 – user2879767
我改變了這個in_login.php:$ _SESSION ['myusername'] = $ myusername; $ _SESSION ['mypassword'] = $ mypassword; – user2879767
,並在login_success.php <?php session_start(); $ _SESSION ['mypassword'] =「myusername」; echo「Innlogget inn som」。$ _ SESSION ['myusername']; – user2879767