blog-names.php
<?php
$lildb = $lia->get('lildb');
$blogs = $lildb->query('select title from blog order by title');
foreach ($blogs as $b){
echo $b['title'].',';
}
<?php
$lildb = $lia->get('lildb');
$blogs = $lildb->query('select title from blog order by title');
foreach ($blogs as $b){
echo $b['title'].',';
}