How to collect data using php from an HTML form?

后端 未结 4 1509
死守一世寂寞
死守一世寂寞 2021-01-19 12:05

Suppose there is a HTML file that has a form in it , which contains some data , which have been taken input from the user using textarea and checkbox . How do I send this da

4条回答
  •  Happy的楠姐
    2021-01-19 12:57

    you can post this data by submitting form and then on the php file you can use $_POST['fieldname']; for using value what you have on HTML page.

提交回复
热议问题