Projects
We help make mobile ideas possible.
The MobileMuse.ca Network brings together community-based cultural, media and technology champions to deploy sustainable, world-class, mobile content and services. Within this intensely collaborative and consultative model we welcome the opportunity to share what we've learned, help launch local initiatives, and explore potential partnerships beyond Vancouver.
Here are some of our world class initiatives underway:
Current Projects:
Past Projects:
- Vancouver International Film Festival Mobile
- metroCode(Metrocode blog)
- Pocketcine (Pocketcine blog)
- English 2 Go
- Mobile Content and Developers Publishing Guide NEW!
View the full list of MobileMuse.ca projects >>
Project Blogs
<?php
// term Project Blog
$term_id = 27;
$node_limit = 10;
$sql = "SELECT n.nid, n.type, n.created FROM {node} n INNER JOIN {term_node} t ON n.nid = t.nid WHERE n.type ='blog' AND t.tid = ". $term_id ." ORDER BY n.created DESC";
$sql = db_rewrite_sql($sql);
$result = pager_query($sql, $node_limit);
while ($row = db_fetch_object($result)) {
echo node_view(node_load(array('nid' => $row->nid)), true);
}
echo theme('pager', NULL, $node_limit);
?>

