@Rabbit,
Thanks , Can you post an example?
User Profile
Collapse
-
or even some variant of this should help
Code:session_start(); // set timeout period in seconds $inactive = 600; // check to see if $_SESSION['timeout'] is set if(isset($_SESSION['timeout']) ) { $session_life = time() - $_SESSION['timeout']; if($session_life > $inactive) { session_destroy(); header("Location: logoutpage.php"); } } $_SESSION['timeout']
Leave a comment:
-
I am thinking session_unset()
check this out!
http://php.net/manual/en/function.session-unset.php...Leave a comment:
-
How to run a XL / Word macros on server using PHP
I have an Application,whi ch for the current discussion , say takes a browse button in which user uploads an XL doc / Word Doc. The file gets uploaded on server. I want to parse the XL file for its contents . Similarly I want to parse the DOC file for its contents and do some manipulations e.g. retrieve the comments in the doc file , do some index based calculations on XL. I already have these as macros.
I want the user to simply upload...
No activity results to display
Show More
Leave a comment: