SooXiaoTong@tg says to OwO
//Before PHP7: $id = isset($_GET[‘id’]) ? $_GET[‘id’] : null; In PHP7: $id = $_GET[‘id’] ?? null; //equivalent of writing old above syntax