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
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.
$_POST['fieldname'];