Hi , trying to call a class method like so
   sqlite_create_function( $this->db ,  'link_keywords' ,  array($this ,
'linkers') ,  1 ) ;   /*(tried &$this as well)*/

kills apache (MS kills it b4 apache gets to write an error)

the same call to a normal function is fine
   sqlite_create_function( $this->db ,  'link_keywords' ,   'linkers' ,  1 )
;

is this a bug or am I just calling it incorrectly ?

Regards,
Simon Wheeler

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to