I have been playing with this script for a while now an it still REFUSES to add the time entry.
I am using this table to determine whos been active in the past 20 mins. Although it just will NOT add my time entry into the database.
//we give the user a session start time using the time(); function
$sessionSTARTTIME = time();
$query = "INSERT INTO sessions (sessionID, session_username, sessionIP, sessionSTARTTIME, donator) VALUES ('$sessionID', '$username', '$sessionIP', '$sessionSTARTTIME', 'no')";
$result = mysql_query($query);
Why wont it add it to the table? Everytime i check it it is simply zero in pgpMyAdmin1!!!!