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
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?
how to increasing the numbers in a given text box please write a vb script
Which operator can be used to do an xor operation in vbscript?
Can any one provide code for Mid(string,start[,length]). I have been asked to write code for Mid(). i.e We need to define our own function say MyMid() which should behave same like built-in Mid function
Explain the arrays in vb script?
What is event handling in vbscript?
What is the technology used by vb script?
How to find the font in qtp. Scenario:After entering the username and passwd you will be navigate into the "welcome:Username" page.Now I want to extarct font for this message.
What is vbscript?
How will you convert a given number to long in vbscript?
If we take 2 strings as “good” and “bad” then what will ‘+’ and ‘&’ operators return?
What aspects of vbscript make it safe so that a web page using vbscript cannot destroy or corrupt information on a user's computer?
How can you destroy an object in vbscript?
Does VB/Win make standalone .EXE files?
Write a Program to add 2 numbers without using operators (+,-) and without using third variable. Note: Use VBScript only Hint: You can use other operators like '/' & '*'(Division & Multiplication)