0
Plz give me php post form
how to create a post form
2 Réponses
+ 1
<form method="POST"></form>
thats all you need. type the input tags within the form tab. when the form is submitted it will be submitted with the post method. you can access the input values in php through $_POST ['formInputNameAttributeValue']
0
thx