This is my code segment...
if (isset($POST['remove']));
{
$submitted = $POST['remove']; <---Problem on initial load
if ($submitted == "click")
echo "You got it!";
}
echo "<br><br><br>For More Options Choose Below!<br><br>";
echo
'<form method="POST" action="reviewhits.php">
<input type="submit" name="remove" value="click"></input>
</form>
';
Please help... On the initial load of my page, it gives me "Notice: Undefined index: remove" when I submit this form, everything works great. Please advise!