php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "manipulating arrays"

How can one access and display the variable names instead of the values passed through a form in PHP?

To access and display the variable names instead of the values passed through a form in PHP, you can use the `array_keys()` function to extract the ke...

What is the recommended way to access external variables in PHP since version 4.1.0?

In PHP version 4.1.0 and later, the recommended way to access external variables is by using the superglobal arrays like $_GET, $_POST, $_COOKIE, $_SE...

What is the significance of the register_globals setting in PHP and how does it relate to variable handling in form submissions?

The register_globals setting in PHP allows variables to be automatically created from form input data, which can lead to security vulnerabilities such...

How can one test if a selection list has been selected in PHP?

To test if a selection list has been selected in PHP, you can check if the corresponding value is present in the $_POST or $_GET superglobal arrays. I...

What are the best practices for handling menu navigation in PHP when register_globals is disabled?

When register_globals is disabled in PHP, it means that variables cannot be directly accessed from the global scope. To handle menu navigation in PHP...

Showing 9996 to 10000 of 10000 results

‹ 1 2 ... 1991 1992 1993 1994 1995 1996 1997 1998 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.