傳遞會話變量怎樣才能在下面的代碼傳遞兩個會話變量loan_officer1.php
通過頭
function redirect_to($location = NULL){ if($location != NULL){ header("Location:{$location}"); exit; } } if(mysql_query($query,$connection)){ //sucess redirect_to('loan_officer1.php'); }else{ confirm_query($query); }
會話變量不必顯式傳遞,它們自動可用於網站上的所有頁面。 – Barmar
使用此重定向顯示loan_officer1.php頁面時,不會顯示會話變量的值。這裏發生的事情就像回到上一頁。 – user2979226
然後你沒有正確使用會話。確保所有頁面都以'session_start()'開頭。 – Barmar