Posts Tagged ‘script’
Posted on December 12, 2007 - by Jordan H
Xewsletter v0.1 Released

Yes, it’s here! Xewsletter v0.1 (beta) is released for you to try!
You can read more at http://www.jhsystems.net/xewsletter/
Comments are appreciated!
Posted on October 15, 2007 - by Jordan H
SiteMail Released
I’m proud to announce the release of SiteMail BETA - a unique way to send and recieve emails. You don’t need any CGI technologies installed on your website, just plain HTML to use it. It integrates fully and even sends the submitted information straight back to you on your website if you want. Choose your own error pages and success pages for seemless integration, and SiteMail does all the work!
It’s really easy to use, so why not give it a try?
Posted on October 5, 2007 - by Jordan H
New Script Soon!!!
Just putting the final touches on a script/service that I’m gonna release in the next few days. Keep your eyes peeled! It’s packed with great features that will make a part of your website even easier than it already is.
Can’t tell you much more, but check back in a few days and you’ll be able to start using it!
Posted on September 23, 2007 - by Jordan H
PHP Session Purging
I’ve been trying to make a login script that purges the sessions database so that users will only stay inactive for 1 hour until they have to log in again. All seems to be well, but then it just doesn’t work.
This is the code which I have on every page:
$time = date("ymdHis");
$cutoff = $time-1000;
$sql = "DELETE FROM adminsessions WHERE time<'$cutoff'";
mysql_query($sql) or die(mysql_error());
It should log the user out after 10 mins of inactivity. Doesn’t seem to be doing that at the moment. Anyone got any ideas?
