how to pass data from one html page to second in php?

后端 未结 6 1643
南笙
南笙 2021-01-23 15:05

I have created a page for updation of record. I want to pass the id of student from one page to another. I am trying to send it through window.location but it is not working. In

6条回答
  •  不要未来只要你来
    2021-01-23 15:20

    Populate a

    in the first page with the information needed; you can change their aspect with CSS as desired.

    When the is send you only need a PHP script/page that uses $_POST to fill the new page.

    Easier than AJAX if you try to navigate from the first page to the second.

提交回复
热议问题