what does a @ before a function mean?
i was looking through some source and i saw
@mysql_free_result($this->db_qresult);
@mysql_select_db ($dbname, $this->db_linkid)
i'm used to @ in perl but it's the first i've seen @ in PHP. what is @?
thanks
------------------source-----------------
function Close () {
@mysql_free_result($this->db_qresult);
return mysql_close ($this->db_linkid);
}
function SelectDB ($dbname) {
if (@mysql_select_db ($dbname, $this->_db_linkid) == true) {
return 1;
}
else {
return 0;
}