I've just got an error.
When I try to assign an object like this:
$obj_md = new MDB2();
The error I get is "Assigning the return value of new by reference is deprecated". Actually I've been looking for a solution but the only one I've seen is just turn down the politicy of php.ini (error_reporting). I've tried it too, but it didn't work.
It's so confusing..I hope you could help me. Thanks in advance.

$obj_md =& new MDB2();That should indeed issue an warning. – IonuČ› G. Stan Jul 6 '09 at 11:38