Reputation: 9
I tried to open sqlite db using below code,
$db = sqlite_open("tttt");
But it gives me an error,
Fatal error: Call to undefined function sqlite_open()
I have search this in different sites and do all the modifications in .ini
file but doesn't work.
My php version is 5.3.13
Upvotes: 0
Views: 13077
Reputation: 219804
You need to enable/install it. See the docs for instructions on how to do this.
Upvotes: 3