bach Posted May 21, 2006 Share Posted May 21, 2006 Hello,I would like to create a function/class (not sure which one appropriate) to log errors to a file.To start with I would like to create a 'errorlog.txt' file where every mysql error message will be writen so I would be able to check the error log to see if anyone has been having issues login into database, etc.Now I have the mysql error being displayed as part of my connection but I do not want the user to see this message. So I would need to store that into a file instead I have no idea on this anyone able to help ?Bach. Link to comment https://forums.phpfreaks.com/topic/10119-to-a-file/ Share on other sites More sharing options...
eves Posted May 21, 2006 Share Posted May 21, 2006 wrap your sql query in a function and use this in all your queriesinside the function, perform the query, then test if there were any errors then log them [code]function db_query($qry){ $result = @mysql_query($qry); if (mysql_errno() > 0) { // log error to file here // and/or perform some error handling // you can be creative on this part but be wary of some overheads } return $result; }[/code] Link to comment https://forums.phpfreaks.com/topic/10119-to-a-file/#findComment-37677 Share on other sites More sharing options...
bach Posted May 21, 2006 Author Share Posted May 21, 2006 Thanks for yor reply,How would I go about writing the log to the file? Link to comment https://forums.phpfreaks.com/topic/10119-to-a-file/#findComment-37685 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.