Felet beror på upprepning av en platshållare . Varje platshållare måste vara unik, även om du binder samma parameter till den.
AND ((type='employer' AND owner_id=:02)
OR (type='employee' AND winner_id=:02))
Bör vara:
AND ((type='employer' AND owner_id=:02)
OR (type='employee' AND winner_id=:another02))
Och bind sedan till det:
$dbStatement->bindParam(':01',$Type);
$dbStatement->bindParam(':02',$UserID);
$dbStatement->bindParam(':another02',$UserID);
$dbStatement->bindParam(':03',$Most);