From 87c966a9d4604ea8408d783cd4e6eaf7c9941f58 Mon Sep 17 00:00:00 2001 From: Martin Monperrus Date: Wed, 17 Dec 2014 14:54:47 +0100 Subject: [PATCH] updates documentation --- bibtexbrowser-documentation.wiki | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/bibtexbrowser-documentation.wiki b/bibtexbrowser-documentation.wiki index 19b8129..cc0555e 100644 --- a/bibtexbrowser-documentation.wiki +++ b/bibtexbrowser-documentation.wiki @@ -1,7 +1,7 @@ bibtexbrowser is a PHP script that creates publication lists from Bibtex files. bibtexbrowser is stable, mature and easy to install. It is used in [[http://www.monperrus.net/martin/bibtexbrowser/users|100+ different universities]] around the globe (in 329 different domains according to Google). @@ -309,19 +309,18 @@ Add in ''bibtexbrowser.local.php'': ====How to order a list of Bibtex entries?====
 <?
-
-?>
-
$_GET['library']=1; require_once('bibtexbrowser.php'); $db = new BibDataBase(); $db->load('biblio.bib'); $query = array('year'=>'2014'); $entries=$db->multisearch($query); -uasort($entries, 'compare_bib_entries'); // comparison +uasort($entries, 'compare_bib_entries'); foreach ($entries as $bibentry) { echo $bibentry->getYear().'
'; } +?> + =====Related tools=====