PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
i'm creating a blog using php and xml since i currently don't have access to mysql but i want to know how to display latest feeds, maybe 3 or so. and also have a next/previous page to the next/previous 3 posts, if possible without loading whole page just the blog box.
yes running php5. and i don't think i'll be able to install sqlite on the server i have, rather i don't think i have the access to. this is just a temp solution until i get mysql. is it necessary to parse the code?
PHP Manual wrote:The SQLite extension is enabled by default as of PHP 5 [...] , so simply do not disable it and it'll be available.
SQLite is not a client library used to connect to a big database server. SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk.
Try this. If it returns "bool(true)", SQLite exists on your server.