Lỗi là do sự lặp lại của trình giữ chỗ . Mỗi trình giữ chỗ phải là duy nhất, ngay cả khi bạn đang liên kết cùng một tham số với nó.
AND ((type='employer' AND owner_id=:02)
OR (type='employee' AND winner_id=:02))
Nên là:
AND ((type='employer' AND owner_id=:02)
OR (type='employee' AND winner_id=:another02))
Và sau đó liên kết với nó:
$dbStatement->bindParam(':01',$Type);
$dbStatement->bindParam(':02',$UserID);
$dbStatement->bindParam(':another02',$UserID);
$dbStatement->bindParam(':03',$Most);