On Sat, Jul 12, 2008 at 6:42 PM, James Dempster <letssurf@xxxxxxxxx> wrote: > On the line where you have > self::$statement->call_user_func_array(array('PDOStatement','bindParam'),func_get_args()); > try this > > call_user_func_array(array(self::$statement,'bindParam'),func_get_args()); > > see if that works...? > Thanks, this is working fine. I only had to make the following adjustment: $args = func_get_args(); call_user_func_array(array(self::$statement,'bindParam'),$args); since func_get_args as an argument is allowed only on user defined functions. Thank you very much for your time! Regards, Luigi