php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "without POST or GET"

What are the potential risks or drawbacks of combining GET and POST methods for passing variables in PHP?

Combining GET and POST methods for passing variables in PHP can lead to confusion and potential security vulnerabilities. It is recommended to use eit...

What is the recommended method for handling form submissions in PHP, "post" or "get"?

When handling form submissions in PHP, it is generally recommended to use the "post" method rather than the "get" method. This is because the "post" m...

Is it possible to access and intercept POST variables using a GET request in PHP?

It is not possible to access POST variables using a GET request in PHP because POST variables are sent in the request body, while GET variables are se...

How can the if-else statement in the PHP function be optimized to handle both POST and GET requests without differentiation?

To handle both POST and GET requests without differentiation in a PHP function, you can use the `$_REQUEST` superglobal variable instead of checking `...

What are the differences between using GET and POST methods in PHP for data manipulation?

When manipulating data in PHP, it is important to understand the differences between using the GET and POST methods. GET method appends data to the UR...

Showing 26 to 30 of 10000 results

‹ 1 2 3 4 5 6 7 8 9 10 ... 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.