php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "POST parameters"

In what scenarios would using POST instead of GET be more appropriate for passing extra parameters in PHP?

Using POST instead of GET would be more appropriate when passing sensitive or large amounts of data, such as passwords, credit card information, or fi...

What is the best practice for passing parameters to a new PHP page for displaying results?

When passing parameters to a new PHP page for displaying results, the best practice is to use either GET or POST methods. GET method appends parameter...

What are the advantages and disadvantages of passing customer IDs as GET/POST parameters instead of using session variables in PHP?

Passing customer IDs as GET/POST parameters instead of using session variables in PHP can be advantageous in scenarios where you want to maintain stat...

What are the advantages and disadvantages of using GET versus POST for passing user profile data in PHP?

When passing user profile data in PHP, using POST is generally preferred over GET for security reasons. GET parameters are visible in the URL, making...

What is the correct way to use http_build_query with "post" data in PHP?

When using http_build_query with "post" data in PHP, you need to pass an array of data as the second parameter to the function. This array should cont...

Showing 36 to 40 of 10000 results

‹ 1 2 ... 5 6 7 8 9 10 11 ... 1999 2000 ›
PHP.ORG

A free knowledge base for PHP developers. Open to all.

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.