hi Laser,
I am bugged by same error but donno how to get rid of it in my case?
I am using PEAR mail Queue tut example
ERROR: Catchable fatal error: Object of class mysqli could not be converted to string in ../add_message.php on line 7
here is add_message.php line 7
$mail_queue =& new Mail_Queue($db_options, $mail_options);
here is config.php from which add_message.php fetches $db_option
$db_options['dsn'] = 'mysql://'.$mysql_user.':'.$mysql_pass.'@'.$mysql_host.'/'.$mysql_db;
I guess 'mysql://'... is causing the problem. tried using new mysqli() but got same error !
plz help!