How to pass multiple variables across multiple pages?

前端 未结 7 599
长发绾君心
长发绾君心 2020-11-30 13:37

My website involves a user submitting data over several pages of forms. I can pass data submitted on one page straight to the next page, but how do I go about sending it to

7条回答
  •  抹茶落季
    2020-11-30 14:06

    You can create sessions, and use posts. You could also use $_GET to get variables from the URL.

    Remember, if you aren't using prepared statements, make sure you escape all user input...

提交回复
热议问题