Explain the difference between POST and GET Method.
Answer / 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 |
write a vb script to rename a folder from tree4 to tree7
write a vbscript for finding the sum of the numbers from 1- 50
How to map test cases with Automation script? Please explain in details.With example Thanks for your co-operation(In Advance)
How should i Create Email invite with server-side Coding?
How to assign a numeric value to a variable?
when you use For Loop, While..do, do..while? at what situations which loop will use.
Have any one know about Test Complete 6, please let me know. If any one have good material regarding Test Complete 6, Please send to my mail id: cns.praveen@gmail.com
Explain about tristate constants in vbscript?
Write a VB Script to count blank Lines in a notepad
wht must be the interview question on corinthian information technology solutions incorporated.
Which is the default Data types in VBScript?
Hello All, In QTP 9.2 for Mozilla Firefox, there is webelement in my application, I tried to click on that using decsriptive programming, but it does not work. and for this i tried this code too: Set obj = CreateObject ("Mercury.DeviceReplay") absx = Browser("").Page("").WebElement(".").GetROProperty ("abs_x") absy = Browser("").Page("").WebElement(".").GetROProperty ("abs_y") obj.MouseMove absx, absy obj.MouseClick absx, absy, 0 But it is not clicked. Can anyone help me out for this problem. Thnx in Advance