Pass form data to another page with php

前端 未结 1 1808
借酒劲吻你
借酒劲吻你 2020-12-03 14:57

I have a form on my homepage and when it is submitted, it takes users to another page on my site. I want to pass the form data entered to the next page, with something like:

1条回答
  •  不思量自难忘°
    2020-12-03 15:50

    The best way to accomplish that is to use POST which is a method of Hypertext Transfer Protocol https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods

    index.php

    
    
    
    
    Name: Email:

    site2.php

     
     
    
     Hello !
    Your mail is .

    output

    Hello "name" !

    Your email is "whatyou@addedonindex.com" .

    0 讨论(0)
提交回复
热议问题