This will talk about some php stuff like sessions, cookies etc..
What is d difference between $_GET Variable and $_POST Variable?
Can anyone tell me?
$_GET is the array on server side which stores all the information submitted from browser to server via http get methods$_POST is the array on server side which stores all the information submitted from browser to server via http post methods
bt i m unable to submit long test thru $_GET method..what shud i do?I m still stuck..Plz help me out..RegardsViren
ok viren..By http get method you can submit a small amount of less sensitive data, while using post you can submit large amount of sensitive data..AND UNLIKE GET METHODS IT WONT APPEAR IN YOUR BROWSR'S ADDRESS BARSo try using post method and to retrieve data use$_POST['inputname'];of a form field
thanx gaurav..it reallly worked..thanks once again.. :)
That's fine !Waiting for more questions !!!!
Post a Comment
5 comments:
$_GET is the array on server side which stores all the information submitted from browser to server via http get methods
$_POST is the array on server side which stores all the information submitted from browser to server via http post methods
bt i m unable to submit long test thru $_GET method..
what shud i do?
I m still stuck..
Plz help me out..
Regards
Viren
ok viren..
By http get method you can submit a small amount of less sensitive data, while using post you can submit large amount of sensitive data..
AND UNLIKE GET METHODS IT WONT APPEAR IN YOUR BROWSR'S ADDRESS BAR
So try using post method and to retrieve data use
$_POST['inputname'];
of a form field
thanx gaurav..
it reallly worked..
thanks once again.. :)
That's fine !
Waiting for more questions !!!!
Post a Comment