What is the diffrence between GET,POST and REQUEST Method.

Answers were Sorted based on User's Feedback



What is the diffrence between GET,POST and REQUEST Method...

Answer / karthik

get method passing value just view address bar , post cant
view
get passing limit value, post pass large amount

if you used get or post method... retrive the value
through request method

Is This Answer Correct ?    36 Yes 2 No

What is the diffrence between GET,POST and REQUEST Method...

Answer / nikunj

GET : When you use this method then variables are view in
the addressbar. If you want security then don't use this
method. That mean in this method have not security. When
you passing value by this method then only 255 char you can
pass. Its useful when you want to bookmark page.

POST: When you passing value by this method then you can
not view value in addressbar of explorer. It is secure then
GET. This method have not any limit for passing value. You
can not bookmark link by this method. If you want to server
log then you can not get by using this method.

REQUEST: When you use GET and POST method then by REQUEST
method you can make request to server and get value of
variable.

Is This Answer Correct ?    36 Yes 2 No

What is the diffrence between GET,POST and REQUEST Method...

Answer / guest

$_REQUEST can also be used to access cookies.

Is This Answer Correct ?    13 Yes 2 No

What is the diffrence between GET,POST and REQUEST Method...

Answer / minaz

$_GET retrieves variables from the querystring, or your URL.
$_POST retrieves variables from a POST method, such as
(generally) forms.
$_REQUEST is a merging of $_GET and $_POST where $_POST
overrides $_GET. Good to use $_REQUEST on self refrential
forms for validations.

Is This Answer Correct ?    8 Yes 0 No

What is the diffrence between GET,POST and REQUEST Method...

Answer / vijay

Hi All:

GET
A : Since information is available on Address bar ,this can
be boomarked( add to favorites list).
B:Limited Information can be sent. (i think its 4KB)
C:Nosecure
D:Used for query somthing (like when u want to fetch data
record)
E:Default addedd in request.(if u dont mention any method
in form tag)

Post:
A: Request Content sent as part of body of request.
B:unlimited data can be sent
C:Secure- cant be book marked.
D:Used to save data (insert/delete/update ..less used with
select clause)



Post

Is This Answer Correct ?    10 Yes 3 No

What is the diffrence between GET,POST and REQUEST Method...

Answer / narender bisht

POST method send information through HTTP while GET method
send information through url. and REQUEST is use When we
don't know what method is used in first page and we want to
take these variable on second page.

Is This Answer Correct ?    8 Yes 2 No

What is the diffrence between GET,POST and REQUEST Method...

Answer / sowmya m n

Get Method:in get method data is append in url and
information will appear in
URL hence it is not secure method to send data however
processing is fast in
get method and it can transfer only256 char, limited number
of data.
Post Method: Post method is secure as compared to get method
since it does not
appear in url and u can transfer unlimited number of data
but processing is
very slow as compared to get method. Now another thing is
that when you have
to upload some data u should have to use post method.

Is This Answer Correct ?    5 Yes 1 No

Post New Answer

More PHP Interview Questions

hai plz inform me specific books fo0r paper1,paper2 and paper 3 of group2 examination... plz giv me at the earliest......

1 Answers   APPSC, HCL,


Explain what are psrs? Choose 1 and briefly describe it?

0 Answers  


Can I learn laravel without php?

0 Answers  


How many columns can be added in a table in mysql?

0 Answers  


Is there a way to encrypt text from php?

5 Answers  






What is array filter php?

0 Answers  


How to break a file path name into parts?

0 Answers  


How to convert a string to lowercase in php?

0 Answers  


Write a program in php to print a table of a number?

0 Answers  


how to open & closing opening period in fico

0 Answers   NS,


What are the main error types in php and how do they differ?

0 Answers  


What are the final class and final method?

0 Answers  


Categories