What are the methods of form submitting in PHP ?

You can submit any variables with POST or GET method. (method POST, cause the variables is not visible at the url)

i)You send the variable "phone" with that form.

<form method="POST" action"getting_variables.php>
<input name='phone">
</form>

ii) And you grab the variable at the getting_variables.php

$phone=$_POST['phone'];
echo $phone;
 
Back
Top