Im having trouble with my drop down list menu its keeps getting wamp error. my drop down list menu will be from the itemname of tbl_item(postgresDB)
funcContainer.php pa
On initial page load $_POST[$name] (or more specifically $_POST['Item'] may not be set. So you will want to check if it is set before using.
$_POST[$name]
$_POST['Item']
Change
if ($row[$value] == $_POST[$name])
to
if (isset($_POST[$name]) && $row[$value] == $_POST[$name])