I've a question: I wrote this: $connect_id=mysql_connect( HOST, UserName, Password );
and I get output to the screen when error. How can I avoid this output ? I want to check: if( $connect_id<=0 ) ... and print my error ???
Thanks !
Use the @ sign to suppress any errors: @$connect_id=mysql_connect( HOST, UserName, Password );