i can get the pear db to work, I have:
$db = DB::connect($dsn);
_ __ _
if (DB::isError($db)) {
_ _die($db->getMessage());
}
_ __ _
$result_= $db->query($recived_db_query);
but then if i want to do something with $result, tex:
$row = $result->fetchRow()
I get: Fatal error: "Call to a member function on a non-object in"
can someone help plz
.patrik