PHP difference between @header() and header() function

header, php

Solution

`@` suppresses errors:

http://php.net/manual/en/language.operators.errorcontrol.php

generally, you don't want to do that

Problem

Possible Duplicate: Reference - What does this symbol mean in PHP? What's the difference between calling @header() and header() function in PHP ?

Original source

Related problems