I ran this
echo 'display_errors = ' . ini_get('display_errors') . "\n";
and got display_errors = 1 so I tried
ini_set('display_errors',0);
and now it shows display_errors = 0, which should be good, right?
Brad, I agree they should be fixed, not swept under the rug, but we're all human and will make errors, so I figured a little safety net wouldn't be too bad an idea.
Perhaps I don't fully understand what the heck I'm expecting to suppress. If I forget to declare a variable with a '$' will the ensuing parse error be suppressed? Maybe I need to go back to the drawing board on this.
Thanks.