Archive: August 2023

Browser Window Notice

This is a cool way to display a notice at the bottom of browser window. Keep in mind there are no advanced settings, and it appears every time window is loaded or refreshed. Here is the basic style: <style type="text/css"> #article-fixed-message-container { position: fixed; bottom: 20px; cursor: pointer; } #article-fixed-message-text { background-color: blue; position: relative; color:

Send a session value from one page to another

To send a session value from one page to another using a URL, you can include the session value as a query parameter in the URL. Here are a few approaches you can use: Append the session value as a query parameter in the URL using PHP: $sessionValue = $_SESSION['session_key']; $url = "../next_page.php?session_value=" . urlencode($sessionValue); In this code, $_SESSION['session_key'] is the