Yes, of course I can do that. But I was just lazy and wanted to reuse the function mysql_query that I am already using. -----Original Message----- From: Paul Scott [mailto:pscott@xxxxxxxxx] Sent: Tuesday, August 22, 2006 7:48 PM To: Peter Lauri Cc: php-general@xxxxxxxxxxxxx Subject: Re: Overriding core functions On Tue, 2006-08-22 at 18:39 +0700, Peter Lauri wrote: > I want to add some functionality when calling the mysql_query(): Why not simply wrap the mysql_query function in a php function? function query($whatever) { log($whatever); $ret = mysql_query($whatever); //do stuff after return $ret; } --Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php