bibtex2latex generates a publication list in latex from a bibtex file. It is written in PHP and is built on top of bibtexbrowser. The publication list created has an academic style (book/articles/conferenc papers/workshop paper/etc). For instance, it can be inserted in a CV. The main advantage of this approach is that your publication list in your web page and the one in your CV are always in sync and have the same style.
Online
You may also use the command line tool curl:
curl -F "bibtex=<myfile.bib" "http://www.monperrus.net/martin/bibtex2latex.php?bibtex2latex&style=IEEE"
Output
Download
1/ download bibtex2latex.php3/ call
http://www.domain.net/bibtex2latex.php?bib=mybib.bib&author=Firstname+Lastname&bibtex2latex
4/ save the result in a tex file
5/ use the tex file, for instance with \input{publist.tex}
%% the simplest way
\documentclass{article}
\usepackage[latin1]{inputenc} %% for accents, may be replaced by utf-8, depending of the encoding of the bibtex file
\usepackage[margin=2cm]{geometry}
\begin{document}
\input{publist.tex}
\end{document}