cahva wrote:If theres lots of those problems, maybe you should just turn the notices off
Eh, but that's a bit like clasping your hands over your eyes and shouting "I CAN'T SEE YOU!" at the problem though, isn't it? :p
I would highly suggest going through the notices and fixing up the code so it's not quite as sloppily-written as it was in previous times. You'll probably note that most of the things you're "fixing" are request variables (e.g. variables created from POST'ed data or parsed from the query string).
Whenever you use a request variable, you should first consider the case where that variable wasn't sent by the user, so code like this:
$username = $_POST['username'];
should instead be written like this:
$username = (isset($_POST['username']) ? $_POST['username'] : '');