Social Sciences, asked by TARUN2693, 1 year ago

How to create post in coding form ? please Help

Answers

Answered by charlisto
1

Sign Up For Free Sign In

PHP GET and POST Method – Tutorial

While dealing with the forms, information can be submitted and transferred to same or another page. To send submitted data through form, one can use GET & POST method to do that in PHP.

A form data can be submitted using these two methods. Both are used for same purpose but stands apart under some specifications. As in GET method key values are passed in the Url while in POST, the information transfers in a hidden manner.

A form submitted information is appended in to the url in the form of Query String consisting of name=value pairs in URL. This string contains user values/data, which are separated by ampersand and spaces are replaced with + sign.

?name=john&[email protected]&contact=9877989898

We have covered lot of examples in which, we set method attribute of form to GET or POST.

...
...
.... i tjink it will help u

Similar questions