I've never used postgres, but if you want the values, then use a foreach loop and do a seperate query for each one
foreach($_POST['checkbox'] AS $value) {
echo $value . "<br>";
}
That will simply echo each of the values so you can see how it works (if you're not familiar with a foreach loop), but you can modify it to execute a query each time.
Cgraz