Im getting the following error: Notice:undefined index:done please advise what is wrong
<?php if($_Get['done']==1 $msg = "Account details saved"; ?>
Check first if the key exists, then the comparison to 1.
1
if (isset($_GET['done']) && $_GET['done'] == 1) { $msg = '...'; }