Hello,
After many attempts to solve, I cannot find the error with my Insert Query.
I really hope I'm not being blind to a simple mistake.PHP Code:$stmm = $dbh->prepare("INSERT INTO hk_logs(staff,action,timestamp)
VALUES(:username, 'Logged in Successfully', '".time()."')");
$stmm->bindParam(':username', $_SESSION['username']);
All help is appreciated


Reply With Quote

