Transfer variables between PHP pages

前端 未结 5 1281
逝去的感伤
逝去的感伤 2020-11-30 11:25

I want to get user input in one page, store that in a php variable and use it in another php page. I have tried using \'sessions\' but it doesn\'t seem to be working. Is the

5条回答
  •  离开以前
    2020-11-30 12:08

    Try changing your session code as this is the best way to do this.

    For example:

    index.php

    Click to continue.';
    } else {
        // form
    }
    ?>
    

    nextpage.php

    
    

    However I'd probably store something safer like a userid in a session rather than the user's login credentials.

提交回复
热议问题