Hi, I am new here and hope this is the right bard.
My question is:
What is the difference between
@session_start();
and
session_start();
Actually I am curious what this @-Operator is for.
[Because i could not search for @ I hope this is not a stupid question that has been covered a hundred times b4]
The @-Operator
Moderator: General Moderators
Re: The @-Operator
It's the error suppression operator - it means "do this, and if there's an error just ignore it and carry on". My advice is never use it.
Re: The @-Operator
TNX 4 the quick response