Hello,
Very nice job for begining !
I have a question with the dashboard you create in the wiki... In the dashboard.php we have this :
<?php
class actions_dashboard {
function handle(&$params){
$bibs = df_get_records_array('bibliographies', array());
df_display(array('bibliographies'=>$bibs), 'dashboard.html');
}
}
With this code, we can say we get all the bibliographies and then we pass the bibliographies to the dashboard.html.
How can I take just the bibliographies which begin with "A" for example ?
Sorry for my english ...