This is what I've tried, I know the syntax is wrong and there are too many brackets causing it not to work but I was just testing stuff!
Code:
$SQLGetLogs = $odb -> query("
SELECT * FROM `logs`
WHERE (`time` + `date` > UNIX_TIMESTAMP() AND `stopped` = 1)
AND `user` = '$MyUser'
");
Any ideas what to do?
How will I make this query work so all the clauses are included?