php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "without POST or GET"

What is the best practice for determining whether a PHP page was called using a POST or GET method?

To determine whether a PHP page was called using a POST or GET method, you can check the `$_SERVER['REQUEST_METHOD']` variable. This variable contains...

Why is it recommended to use POST or GET methods and redirect using headers in PHP form submissions?

Using POST or GET methods in form submissions helps maintain security by keeping sensitive information out of the URL. Redirecting using headers ensur...

What advantages does using POST over GET offer when transferring data in PHP?

Using POST over GET in PHP offers several advantages when transferring data. POST method does not have a limit on the amount of data that can be sent,...

When should you use POST and when should you use GET in PHP?

In PHP, you should use POST when you want to send sensitive data, such as passwords or user information, as it is more secure than GET. GET should be...

How can GET variables be converted to POST variables in PHP and sent to a page?

To convert GET variables to POST variables in PHP and send them to a page, you can create a form with hidden input fields that capture the GET variabl...

Showing 16 to 20 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.