query( "CREATE table if not exists post ( id integer primary key autoincrement, author text not null, path text not null, content text not null, created timestamp not null default current_timestamp, updated timestamp not null default current_timestamp)"); $varPosts = $c->query( "SELECT * from post where path like ? or path like '*'", $strPath); $varParsedown = new Parsedown(); ?>