php.org PHP Logo
Beginner Intermediate Advanced

Search results for: "session manipulation"

Are there alternative methods or strategies that can be used in PHP to achieve the same functionality as the HTTP_REFERER variable without its potential pitfalls?

The HTTP_REFERER variable can be unreliable as it can be easily spoofed or not sent by some browsers. One alternative method to achieve similar functi...

What is the role of session_start() in managing sessions in PHP, and how does it relate to the session.auto_start setting?

session_start() is a PHP function used to initialize a session and allows you to access session variables. It must be called before any output is sent...

How can email notifications be integrated into a PHP forum that operates without cookies, using only sessions?

Email notifications can be integrated into a PHP forum that operates without cookies by storing the user's email address in the session data when they...

What is the best practice for storing button press events in PHP sessions?

When storing button press events in PHP sessions, it is best practice to use an array to store the events. This allows you to easily add new events to...

What are the best practices for transporting arrays between pages in PHP?

When transporting arrays between pages in PHP, the best practice is to use sessions to store the array data temporarily. This allows the data to persi...

Showing 9901 to 9905 of 10000 results

‹ 1 2 ... 1978 1979 1980 1981 1982 1983 1984 ... 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.