03-19-2009, 07:12 PM
|
#5 (permalink)
|
|
The Contributor
Join Date: Nov 2007
Location: Nashville, TN
Posts: 66
Thanks: 20
|
hmmm
I ran into something today that looks a tiny bit different.
Any real difference between
Code:
if($result){
//do something with the result
}
and this
Code:
if(@$result){
//do something with the result
}
Why use the @ symbol?
|
|
|
|