To make a long story short, code like this:
$query = "INSERT INTO advisory (pk, first_array, second_array) VALUES (1, '{$first_array}', '{$second_array}')";
gives me these results:
Warning: PostgreSQL query failed: ERROR: array_in: Need to specify dimension in somefile.php on line 5
The vars $first_array and $second_array are passed from forms on the previous pages. I'm guessing that I've just got some syntax slightly wrong, but perhaps there's more to the story than that. Know anything about it? Thanks...
-TN