Explain the difference between POST and GET Method.

Answer Posted / abinash grahacharya ..

It is a good question ....... :)

in get case we can see the posted value in the url when a
form is being posted, but in the post case the posted value
of a form will not show in the url...

basically the developer and testers are using the get method
in developement and in testing time.. but have to make it
post in the time of live.

if we are posting data from a form to other page we can get
that using $_POST['variable name'] or by $_REQUEST['variable
name']

but in case of get we can get it in $_GET['variable name']
and $_REQUEST['variable name']

I hope this will help..


Thanks

Is This Answer Correct ?    2 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is vbscript language a case-sensitive language and what does it mean?

537


how to answer "TELL ME ABOUT UR SELF" as exp.person. whr to start and whr to stop. can anyone tel me

1332


Which date function is used in the vbscript language to find the difference between the 2 dates?

583


Sub link() Dim k As Integer Dim rand As Integer Dim URL As String Dim foldernum As Integer Dim folderstring As String Dim filenum As Integer Dim filestring As String k = 1 'for AC Numbers For i = 11 To 40 foldernum = 0 foldernum = 1000 + i folderstring = CStr(foldernum) folderstring = Mid(folderstring, 2, 3) folder = "ac" & folderstring 'folderstring = Sheets(2).Cells(i, 1) ' for Number of Random files For j = 1 To 10 rand = Int(Rnd * (200 - 1) + 1) filenum = 0 filenum = 1000 + rand filestring = CStr(filenum) filestring = Mid(filestring, 2, 3) 'URL = "http://ceobihar.nic.in/PSCDROM/ac" & folderstring & "/i" & folderstring & "0" & filestring & ".pdf" URL = "http://www.elections.tn.gov.in/pdfs/dt1/" & folder & "/" & folder & filestring & ".pdf" ' URL =http://www.wb.nic.in/wbeco/EROLLS/PDF/English/A001/a0010105 .pdf Cells(k, 1) = folderstring Cells(k, 2) = folder Cells(k, 3) = filestring Cells(k, 3) = URL k = k + 1 Next j Next i End Sub plz define it

2229


If we take 2 strings as “good” and “bad” then what will ‘+’ and ‘&’ operators return?

530






hi all, i had a question, that how to find out hiding a coloumn in a table i had a table having the following column names NAME DESCRIPTION CREATED TIME CREATED USER if i right clicked on a NAME column it will displays a menu having the same column names in a list like NAME DESCRIPTION CREATED TIME CREATED USER with check boxes.if i unched any check box, that column name should not be appear in the main table column names could anyone please solve this problem?

1543


When does ‘on click of button’ event gets triggered in the vbscript language?

534


Develop a parameterized action that accomplishes the following a. Launch a browser of users choice ( example : IE, chrome etc) b. Open up a search engine (Google, Bing etc) c. Perform a search d. Click a particular link depending on the user’s choice ( 1st , 2nd or third link)

1406


Explain about constants in vb script?

567


What is the difference between function and procedure?

562


How to open a file. What is the perpose of true and false mode there?

598


How to capture a runtime error in vbscript?

623


why do u choose to go for testing why cant for devoloping

1579


What is the difference between do until loop and do while loop?

530


Which function allows you to instantiate an object given its programmatic identifier or progid?

551