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

What the limitation of header() function in php?

0 Answers  


How can you pass a variable by reference?

0 Answers  


Is overloading possible in php?

0 Answers  


What do you mean by core php?

0 Answers  


What are the disadvantages of php?

0 Answers  






What are magic constants in php?

0 Answers  


How to call php function in jquery?

0 Answers  


What is meant by nl2br()?

3 Answers  


Explain php explode() function.

0 Answers  


How the web server interprets php and interacts with the client?

0 Answers  


What is php in full?

0 Answers  


Who is the father of PHP and explain the changes in PHP versions?

13 Answers   Befree, iMark Group, Netizen,


Categories