Forum Moderators: coopster
What is the '@' called in php/mysql?
What does it do explicitly?
Can you point me to any documentation please.
google returns nothing, or do I have to escape it to search it right?
Can't figure it out, nothing in MySQL page or PHP page, that I can find.
See it in a lot of tutorials, but they just say "dont worry about that just keep going we'll explain it later" but never do.
$fp = @fopen("filename","r");
if ($fp)
{
// handle the file
}
else
{
// handle file not found
}
For more information on the PHP error suppression symbol, see this link:
[uk3.php.net...]
dc