Create a PHP Keyed array for select widgets
Examples from http://drupal.org/node/125464
$i=1;
while($i<=20) {
$order_by_array[$i] = $i;
$i++;
}
return $order_by_array;global $user;
$sql = "SELECT title FROM node WHERE uid = ".$user->uid." AND type = 'hyperfiction'";
$res = db_query($sql);
while($row = db_fetch_array($res)){
$rows[] = $row['title'];
}
return $rows;