logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • What are the differences between GET and POST methods in form submitting?


  • Correct Answer
  • On the server side, the main difference between GET and POST is where the submitted is stored The $_GET array stores data submitted by the GET method The $_POST array stores data submitted by the POST method On the browser side, the difference is that data submitted by the GET method will be displayed in the browser?s address field Data submitted by the POST method will not be displayed anywhere on the browser GET method is mostly used for submitting a small amount and less sensitive data POST method is mostly used for submitting a large amount or sensitive data 


  • Technology problems


    Search Results


    • 1. What is the functionality of md5 function in PHP?
    • Discuss
    • 2. How can we find the number of rows in a result set using PHP?
    • Discuss
    • 3. What is the maximum size of a file that can be uploaded using PHP and how can we change this?
    • Discuss
    • 4. How can we get the browser properties using PHP?
    • Discuss
    • 5. Can we use include ("xyz.PHP") two times in a PHP page "index.PHP"?
    • Discuss
    • 6. What is a Session?
    • Discuss
    • 7. How do you destroy a particular or all Sessions?
    • Discuss
    • 8. Explain include(), include_once, require() and require_once.
    • Discuss
    • 9. How can we extract string "abc.com" from a string "https://info@abc.com" using regular _expression of php?
    • Discuss
    • 10. What are the different types of errors in php?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment