Hi, I've got a question about PHP Sessions. So I have some simple code like
<?php
session_start();
// store session data
$_SESSION['views']=1;
?>
And I'm wondering how long will it last? Like will the session stay open until the browser is closed? Until the user has left my site? When he/she...
Yesterday, I was trying out Apache and all. So, I installed the Apache Binary, from http://www.apachelounge.com/download/, according to the guide here, http://blogs.sitepoint.com/2009/04/07/how-to-install-apache-on-windows/ (very first zip file). I installed the PHP VC9 Thread-safe from...