0
What is the structure of POST request ?
In web systems we have method called POST,Get,Request
2 Answers
+ 1
What do you exactly mean Khushboo Soomro? Do you want to know how to specify the method in a form? If so, consider the following lines :
<form action="action-page.php" method ="post">
<!-- Inputs go here -->
</form>
You write either 'get' or 'post' as the value of the 'method' attribute!
If this isnât what you're asking, let me know :))
0
Sir, i am asking that what is the structure of a POST ?