Name: Anonymous 2009-08-03 16:25
why use dbs when I can just store info in text files? is this windows or what
sqlite> select * from foo;
1|foo|bar
2|baz|quux
3|hma|quux
4|HAX|bar $sqldb = sqlite_open("dbase.db");
$result = sqlite_query($sqldb, "select * from foo where title = 'bar'");
$res = sqlite_column($result, "name");
var_dump($res);