Possible Duplicate:
What is the use of the @ symbol in PHP?
Reference — What does this symbol mean in PHP?
what does using <?php echo @$fnameerror; ?>
mean. why use @ before variable in php
Possible Duplicate:
What is the use of the @ symbol in PHP?
Reference — What does this symbol mean in PHP?
what does using <?php echo @$fnameerror; ?>
mean. why use @ before variable in php
@ is pure evil. It's not a good idea to use. You can find an explanation about it here.
It can cause massive debugging headaches because it will even suppress critical errors.