karthikeyan_coder Posted July 21, 2007 Share Posted July 21, 2007 hello, we know that @mysql_connect(); wont display errors... in the same way... i have a function call.... $con->striper(); I want to disable error for this function... How can i? Plz help me... Quote Link to comment Share on other sites More sharing options...
speaker219 Posted July 21, 2007 Share Posted July 21, 2007 try $con->@striper() Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted July 21, 2007 Share Posted July 21, 2007 You add the error suppression character at the beginning of the line: @$con->striper(); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.