yes, when you use the @ it "silences" those big ugly PHP errors so you can make your own.
like
inlclude ("file-that-does-not-exist.php");
would return the big
Warning: Could not open "file-that-does-not-exist.php" for include on Line whatever
if you do something like
$include = @include("file-does-not-exist.php");
if(!$include) {
echo "<b>Error:</b> Could Not Include A Needed File!";
}
or something to that effect 🙂