I want to know if we have another way to error instead of @ symbol because I am confused with the symbol
@$page = $_GET['page'];
I want to know if we have another way to error instead of @ symbol because I am confused with the symbol
@$page = $_GET['page'];
http://php.net/manual/en/language.operators.errorcontrol.php
The @ is error suppression operator in PHP.
PHP supports one error control operator: the at sign (@). When prepended to an expression in PHP, any error messages that might be generated by that expression will be ignored. See: