<?php
echo "<p>Welcome <b>$_POST[user]</b>!</p>";
echo "<p>Your product choices are:<br>";
if (!empty($_POST[products])) {
echo "<ul>";
foreach ($_POST[products] as $Value) {
echo"<li>$value";
}
echo "</ul>";
}
?>
The following are example of the Notices that I receive.
I welcome and seek advice from those more experienced.
Thank you.
Wes Smith