how to pass value from one php page to another using session

后端 未结 2 1611
隐瞒了意图╮
隐瞒了意图╮ 2020-11-30 08:04

I can pass values form one page to another but I need to pass value like this,

Page 1:

Page4.php

Page3.php

I need to pass the value in a t

2条回答
  •  春和景丽
    2020-11-30 08:51

    Solution using just POST - no $_SESSION

    page1.php


    page2.php

    
    
    

    Solution using $_SESSION and POST

    page1.php

    
    
    
    



    Go to page2

    page2.php

    
    
    

    WARNING!!! - This contains no validation!!!

提交回复
热议问题