I was also wondering if someone could tell me how to extract the total number of documents contained in a database via PHP. Thanks, Frank
Frank J Bruzzaniti a ?crit :> I was also wondering if someone could tell me how to extract the total > number of documents contained in a database via PHP. >http://www.xapian.org/docs/apidoc/html/classXapian_1_1Database.html#b9bc23247c69cc812766b6a070c9e67c Example : $database = new XapianDatabase($path); echo 'your database contains ', $database->get_doccount(), ' document(s)'; Daniel