php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "$_SERVER['REQUEST_TIME']"

What role does var_dump($_SERVER) play in resolving issues related to $_SERVER['PHP_SELF'] usage?

When using $_SERVER['PHP_SELF'] to get the current page's filename, there may be issues with the value returned due to server configuration or URL rew...

How can PHP be used to determine the time a specific page was accessed by a user?

To determine the time a specific page was accessed by a user in PHP, you can use the $_SERVER['REQUEST_TIME'] variable, which contains the timestamp o...

How does using $_SERVER['HTTP_REFERER'] differ from $_SERVER['HTTP_ACCEPT_LANGUAGE'] in PHP?

$_SERVER['HTTP_REFERER'] is used to retrieve the URL of the referring page that linked to the current page, while $_SERVER['HTTP_ACCEPT_LANGUAGE'] is...

How can the use of $_SERVER['SCRIPT_NAME'] improve the security of PHP code compared to $_SERVER['PHP_SELF']?

Using $_SERVER['SCRIPT_NAME'] instead of $_SERVER['PHP_SELF'] can improve the security of PHP code because $_SERVER['PHP_SELF'] is vulnerable to cross...

How can the $_SERVER['PHP_SELF'] and $_SERVER['SCRIPT_FILENAME'] variables be used to obtain file paths in PHP?

To obtain file paths in PHP, you can use the $_SERVER['PHP_SELF'] and $_SERVER['SCRIPT_FILENAME'] variables. $_SERVER['PHP_SELF'] returns the filename...

Showing 11 to 15 of 1617 results

‹ 1 2 3 4 5 6 7 8 9 10 ... 323 324 ›
PHP.ORG

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

Legal

  • About
  • Contact / Imprint
  • Terms
  • FAQ

© 2025 php.org. All rights reserved.