Hello,
Never mind the last email subjected "PSQL and PHP". I found the bug.
In PHP script, instead of using
insert into employee values (
'Bernie',
'{$phone, $fax, ...}'
);
or
insert into employee values (
'Bernie',
'{"$phone", "$fax", ...}'
);
or any other possible combo,
I should have used
insert into employee values (
'Bernie',
'{\"$phone\", \"$fax\", ...}'
);
Damn it! That makes me mad! Sorry about this.
- Bernie