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

How many types of arrays are there in php?

0 Answers  


Are parent constructors called implicitly inside a class constructor?

0 Answers  


How can a cross-site scripting attack be prevented by php?

0 Answers  


What is the goto statement useful for?

0 Answers  


What is use of header() function in php? What the limitation of header()?

0 Answers  






Where is session id stored?

0 Answers  


Is false empty php?

0 Answers  


how to hidden querystring url please send sample program

2 Answers  


How to connect SMTP server in php. I want to edit that in mantiss bug tracking tool. If anyone worked on mantiss software or in php, please give answer . I need to modify that in mantiss software.

1 Answers   HCL, UHG,


What is a php trait?

0 Answers  


How to convert a json string to an array in php?

0 Answers  


What is static method php?

0 Answers  


Categories