Ok, Ive been seeing alot of people using this recently and am at a loss of how much different it is from the other way of doing it.
So what is the difference between
AndPHP Code:<?php
$file = @file_get_contents("FILE.ext");
?>
Thanks to anyone who can help =]PHP Code:<?php
$file = file_get_contents("FILE.ext");
?>










