What is the diffrence between GET,POST and REQUEST Method.
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
Why is php so popular?
How can we encrypt and decrypt a data present in a mysql table using mysql?
Which function will you use to create an array?
What are the disadvantages of php?
How many types of array supported in php?
Can I learn laravel without php?
What is difference between sql and php?
What is the basic function to search files for lines (or other units of text) that contain a pattern.
<?php /** * @version 1.0 $ * @package HelloWorld * @copyright (C) 2005 Andrew Eddie * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); ?> <?php $database =& JFactory::getDBO(); //$sql = 'SELECT name, username FROM #__users'; $sql="select a.id, a.title, a.introtext, a.created_by, a.created from jos_content a, jos_content_frontpage b where a.id=b.content_id and b.ordering='2'"; $database->setQuery( $sql ); $user = NULL; $user = $database->loadObject(); //echo 'Name: ' . $user->name . '<br />'; echo '<h1>' . $user->title . '</h1><br />'; //echo 'Username: ' . $user->username; echo ' ' . $user->introtext; i write this and fetch the result from the database the result is The Intranet is up and working ! Our intranet is up and working and should be accessible from both Mumbai and NOIDA. As you will notice, this template, look & feel is not in line with our corporate indentity but we chose the route of "form-follows-funtion" In the first phase, we are rolling out functionality that is critical to all of us - Policies and How-to documents. In subsequent phases, we will be launching other features. Keep watching this space for more details i want to see only 4 line of top then how this may done
Explain Type hinting in PHP?
Are there regular expressions in php?
What is uri routing?