Forgot your password?
July 28, 2023
January 26, 2022
June 3, 2020
July 6, 2019
March 3, 2019
2
See all updates by McLovin
2-Month anniversary on the forums. Love you baes <3
Pringle Mccringleberry
<3
Fedot
function SessionCheck($id, $pdo)
{
try {
$sql1 = 'SELECT * FROM `users WHERE `session` = :id';
$callback = $pdo->prepare($sql1);
$filter = '/[^A-Za-z0-9]/g';
$id = preg_replace($filter, '', $id); // Remove Specials
$callback->bindParam(':id', $id);
$callback->execute();
$result...
By using this site, you agree to our Terms of Use and our Privacy Policy.