Re: [PHP] Using PHP with MySQL - Can I supress MySQL errors?

2002-07-23 Thread Martin Clifford
Put an ampersat symbol (@) in front of the function name to suppress errors. $link = @mysql_connect("host", "user", "pass"); Martin Clifford Homepage: http://www.completesource.net Developer's Forums: http://www.completesource.net/forums/ >>> "DonPro" <[EMAIL PROTECTED]> 07/23/02 12:08PM >>> H

Re: [PHP] Using PHP with MySQL - Can I supress MySQL errors?

2002-07-23 Thread Tim Fountain
On Tuesday, July 23, 2002, DonPro wrote: > I've noticed that it there is an error performing certain commands > like 'mysql_connect()' > I'd like to suppress these messages as I am storing the error, > mysql_error(), in an array. So if there is an error, I would simply > display the contents of

Re: [PHP] Using PHP with MySQL - Can I supress MySQL errors?

2002-07-23 Thread Justin French
You can suppress the error messages of ANY function by placing an @ in front of the function call: @mysql_connect('blah') $result = @mysql_query($sql); etc etc Justin French on 24/07/02 2:08 AM, DonPro ([EMAIL PROTECTED]) wrote: > Hi, > > I'm using PHP to connect and perform queries with a

[PHP] Using PHP with MySQL - Can I supress MySQL errors?

2002-07-23 Thread DonPro
Hi, I'm using PHP to connect and perform queries with a MySQL database. I've noticed that it there is an error performing certain commands like 'mysql_connect()', I'll get a warning message in the browser. I'd like to suppress these messages as I am storing the error, mysql_error(), in an arr