can anyone assist me with creating a block snippet like the whos new in http://adrenalinehub.com/

or is there a handbook or snippets or tutorial that explains this that includes the php code?
im not good with php sorry

i just need the functions i can theme the rest with css

Comments

sign’s picture

$limit = how many ppl you want to show...

for better styling you can add divs, etc. or generate a list.

$limit = 5;
$default_picture = variable_get('user_picture_default', '');
$result = db_query_range('SELECT uid, name, picture FROM {users} WHERE status != 0 AND access != 0 ORDER BY created DESC', 0, $limit);
while ($account = db_fetch_object($result)) {
  if ($account->picture){
    $output .= '<img src="/'.$account->picture.'" alt = "avatar" />';
  } else if ((!$account->picture) AND ($default_picture)){
    $output .= '<img src="'.$default_picture.'" alt = "avatar" />';
  }
  $output .= $account->name.'<br />';
}

return $output;

__________________________________ ____ ___ __ _ .. .. .
http://sotak.co.uk
drupal services -- webdesign