Sometimes while you are developing Joomla 1.5 theme you need custom menu or particulars extensions for your theme. You can try to code a custom menu but it isn't easy link to internal Articles in joomla... How can you do it? JoomlaDB is a php lib that permits to link internal joomla articles using php class and methods and article title. Example: if you want to generate link to latest article with title "FAQ" you can write into php code: 


<?

  $article=new Article();

  $article->setDB($DatabaseHost, $User, $Password, $database); 

  $article->set_atitle("FAQ"); //taking article title

?>

<h1>Link articolo: <? echo $article->art_link(); ?></h1>


Into html output page you can see something like


<h1>Link articolo: <a href="index.php?option=com_content&view=article&id=1 
&Itemid=0">FAQ</a></h1>

If you want to learn more see the documentation page: you can find examples to understand better.