alexrubin
I was trying to make a script that will add a watermark on images, and i stumbled upon a script that checks if the image exists or not and the used it like this:
$image = @imagecreatefromjpeg("bla.jpg");
if (!$image)....
i wanted to know why do they put the @ before the function :confused:
$image = @imagecreatefromjpeg("bla.jpg");
if (!$image)....
i wanted to know why do they put the @ before the function :confused: