Link to home
Start Free TrialLog in
Avatar of vishnu kalakota
vishnu kalakota

asked on

Can any one explain what this php Code dose?

class MyDB extends SQLite3
{
    function __construct()
    {
        $this->open('test.db');
    }
}
$db = new MyDB();
if (!$db) {
    echo $db->lastErrorMsg();
   
} else {
    echo "Opened database successfully\n";
}
ASKER CERTIFIED SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vishnu kalakota
vishnu kalakota

ASKER

Thank YOu SIR
Thanks for the points, and thanks for using E-E! ~Ray