RE: [PHP-WIN] @mssql_connect() versus mssql_connect()

2006-10-13 Thread tg-php
As mentioned, the @ suppresses any errors, warnings, notices, etc that the command will give. This is typically considered really bad programming practice. If you resort to using an @ to suppress, one of two things is an issue: 1. Either error reporting is set to high and you're getting warnin

RE: [PHP-WIN] @mssql_connect() versus mssql_connect()

2006-10-13 Thread Bill Bolte
The @ is for error suppression -Original Message- From: Alf Stockton [mailto:[EMAIL PROTECTED] Sent: Friday, October 13, 2006 12:00 AM To: php-windows Subject: [PHP-WIN] @mssql_connect() versus mssql_connect() What is the difference between @mssql_connect() and mssql_connect()? i.e. What