Submitted by Erin Rasmussen on
/*resets variable for use in the script*/
unset ($output);
/**********************************************
* Displays a list of node title and node teaser
* for all nodes in the taxonomy term $taxo_id
* The title of the node is linked to the node
* snippet works with Drupal 4.6.6
*
*/
$taxo_id = 396;
$sql = "SELECT node.nid, node.title FROM node INNER JOIN term_node ON node.nid = term_node.nid WHERE term_node.tid = $taxo_id AND node.status = 1";
$result = db_query($sql);
while ($node = db_fetch_object($result)) {
$output .= "
";
$output .= "$node->teaser
";
}
print "
- ";
print $output;
print "
";
?>
Bolivia
- Ecological Stoves David Whitfield V CEDESOL La Paz, Bolivia, presentación a Global Village Energy Partnership Latin America Santa Cruz, Bolivia, July 2003
Alemania (1921)
- Self Cookers in Kochlehrbuch fuer Schule und Haus, Martin Boll, Germany, April 4, 2006
Guatemala
- Cocedora Onil, HELPS Cocina de Calor retenida en ETHOS 2006, HELPS, January 2006
Kenia
- Mrs. Mary Kavita, Haybox Cooker, Makeweni, Kenya, Courtesy Richard Stanley, Legacy Foundation, November 2005
Malawi
- Food Warmer/Fireless Cooker (Probec) How to Make a Food Warmer / Fireless Cooker (HEDON), Christa Roth, Advisor for Food Processing and Biomass Energy Conservation in the Integrated Food Security Programme (IFSP), Mulanje, Malawi, September 2003
Tanzania
- Tanzanian Hayboxes, Stoves, and Wonderbaskets, Meg Arenberg, Sunseed Tanzania Trust, August 2005
- Log in to post comments