I've got an PHP installation without the SQLite-Functionality as a base install so no sqlite_* functions are available.
Is there a PHP library (PHP code) that can access SQLite Databases without the need of installing any plugins into PHP?
(I'm not able to change the server configuration)
In fact i only need basic support (SELECT Statements only)
Basically i'm looking for a pure-PHP SQLite driver much like https://github.com/kripken/sql.js is a pure-JS implementation of the SQLite driver.
PDO? You can usephpinfo()to check. Search the output of that function for the stringssqliteorsqlite2.