PHP/Development/Error Obtrusive Messages
Версия от 10:37, 26 мая 2010; (обсуждение)
Disabling Obtrusive Messages with "@"
<form action=test.php>
<input type=submit name="doGo" value="Click!">
</form>
<?
if(@$doGo) echo "You have clicked the button!";
?>