would there be any similar method to that ? I don't really care about the method, all I want is the result. I tried this:
$now = strtotime("now");
$query = $conn->prepare('SELECT * FROM events WHERE date > :now ORDER BY date ASC');
$query -> bindValue(':now', $now);
but it doesn't work ..