Sorry if already been explained elsewhere, I have searched and searched and not found the answer.
Initially, seeing this Notice makes me want to fix it, but upon reflection - what harm can come from it?
In the example below, how could someone Maliciously take advantage? If they couldn't perhaps someone could give me an example where this 'Undefined index' notice may cause problems?
if($_GET['action']=="update"){ ~code~ }
I know the above example could be fixed with as simple as using 'isset', but I have other areas with Notices such as the below revolving around a form with the code similar to:
print "<input value='".$_POST['value']."'>";
Is there any possibility of an advanced user to use a vulnerability?