Our members are getting sick of having to log in every time they visit our site. What is the best way to do the keep logged in part?
Try using the setcookie function. Example: <?php setcookie($cookieName, $cookieValue, $expire); ?> PHP: You can retreive information from this with: $val = $_COOKIE['cookie_name']; PHP: Make sure to use setcookie() before echo. Also ALWAYS use hashed passwords only in both cookies and sessions.