< 1 2 3 4 >  Last ›
2 of 5
The Ctrl+V game
Posted: 15 September 2004 03:21 AM   [ # 26 ]     [ Ignore ]   [ # 26 ]  
Board Mentor
Total Posts:  2597
Joined  2005-01-06

Yeah, I’m a dork

for($i = 0; $i < count($mode_types_text); $i++)
{
$selected = ( $mode == $mode_types[$i] ) ? ' selected="selected"' : '';
$select_sort_mode .= '<option value="' . $mode_types[$i] . '"' . $selected . '>' . $mode_types_text[$i] . '</option>';
}
$select_sort_mode .= ‘</select>’;

$select_sort_order = ‘<select name=“order”>’;
if($sort_order == ‘ASC’)
{
$select_sort_order .= '<option value="ASC" selected="selected">' . $lang['Sort_Ascending'] . '</option><option value="DESC">' . $lang['Sort_Descending'] . '</option>';
}
else
{
$select_sort_order .= '<option value="ASC">' . $lang['Sort_Ascending'] . '</option><option value="DESC" selected="selected">' . $lang['Sort_Descending'] . '</option>';
}
$select_sort_order .= ‘</select>’;

//
// Generate page
//
$page_title = $lang[‘Memberlist’];
include($phpbb_root_path . ‘includes/page_header.’.$phpEx);

$template->set_filenames(array(
‘body’ => ‘memberlist_body.tpl’)
);
make_jumpbox(‘viewforum.’.$phpEx);

$template->assign_vars(array(
‘L_SELECT_SORT_METHOD’ => $lang[‘Select_sort_method’],
‘L_EMAIL’ => $lang[‘Email’],
‘L_WEBSITE’ => $lang[‘Website’],
  ‘L_FROM’ => $lang[‘Location’],
‘L_ORDER’ => $lang[‘Order’],
‘L_SORT’ => $lang[‘Sort’],
‘L_SUBMIT’ => $lang[‘Sort’],
‘L_AIM’ => $lang[‘AIM’],
‘L_YIM’ => $lang[‘YIM’],
‘L_MSNM’ => $lang[‘MSNM’],
‘L_ICQ’ => $lang[‘ICQ’],
  // MOD RANK MEMBERLIST BEGIN
  ‘L_USER_RANK’ => $lang[‘Poster_rank’],
  // MOD RANK MEMBERLIST END
‘L_JOINED’ => $lang[‘Joined’],
‘L_POSTS’ => $lang[‘Posts’],
‘L_PM’ => $lang[‘Private_Message’],

‘S_MODE_SELECT’ => $select_sort_mode,
‘S_ORDER_SELECT’ => $select_sort_order,
‘S_MODE_ACTION’ => append_sid(“memberlist.$phpEx”))
);

switch( $mode )
{
case 'joined':
$order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page'];
break;
case 'username':
$order_by = "username $sort_order LIMIT $start, " . $board_config['topics_per_page'];
break;
case 'location':
$order_by = "user_from $sort_order LIMIT $start, " . $board_config['topics_per_page'];
break;
case 'posts':
$order_by = "user_posts $sort_order LIMIT $start, " . $board_config['topics_per_page'];
break;
case 'email':
$order_by = "user_email $sort_order LIMIT $start, " . $board_config['topics_per_page'];
break;
case 'website':
$order_by = "user_website $sort_order LIMIT $start, " . $board_config['topics_per_page'];
break;
case 'topten':
$order_by = "user_posts $sort_order LIMIT 10";
break;
default:
$order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page'];
break;
}
// MOD RANK MEMBERLIST BEGIN
$sql = “SELECT *
  FROM ” . RANKS_TABLE . ”
  ORDER BY rank_special, rank_min”;
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql);
}
$ranksrow = array();
while ( $row = $db->sql_fetchrow($result) )
{
$ranksrow[] = $row;
}
$db->sql_freeresult($result);
// MOD RANK MEMBERLIST END

$sql = “SELECT username, user_id, user_viewemail, user_posts, user_regdate, user_from, user_website, user_email, user_icq, user_aim, user_yim, user_msnm, user_avatar, user_avatar_type, user_allowavatar, user_rank
FROM ” . USERS_TABLE . “
WHERE user_id <> ” . ANONYMOUS . “
ORDER BY $order_by”;
if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query users', '', __LINE__, __FILE__, $sql);
}

if ( $row = $db->sql_fetchrow($result) )
{
$i = 0;
do
{
$username = $row['username'];
$user_id = $row['user_id'];

$from = ( !empty($row['user_from']) ) ? $row['user_from'] : ' ';
$joined = create_date($lang['DATE_FORMAT'], $row['user_regdate'], $board_config['board_timezone']);
$posts = ( $row['user_posts'] ) ? $row['user_posts'] : 0;
// MOD RANK MEMBERLIST BEGIN
$user_rank = '';
$rank_image = '';
if ( $row['user_rank'] )
{
for($j = 0; $j < count($ranksrow); $j++)
{
if ( $row['user_rank'] == $ranksrow[$j]['rank_id'] && $ranksrow[$j]['rank_special'] )
{
$user_rank = $ranksrow[$j]['rank_title'];
$rank_image = ( $ranksrow[$j]['rank_image'] ) ? '' . $poster_rank . '
’ : ‘’;
        }
      }
    }
    else
    {
for($j = 0; $j < count($ranksrow); $j++)
{
if ( $row['user_posts'] >= $ranksrow[$j]['rank_min'] && !$ranksrow[$j]['rank_special'] )
{
$user_rank = $ranksrow[$j]['rank_title'];
$rank_image = ( $ranksrow[$j]['rank_image'] ) ? '' . $poster_rank . '
’ : ‘’;
        }
      }
    }

 Signature 

http://www.pacats.com

Profile
 
Posted: 12 April 2005 12:21 AM   [ # 27 ]     [ Ignore ]   [ # 27 ]  
Know It All
Total Posts:  6381
Joined  2004-12-22

http://www.minijuegos.com/juegos/jugar.php?id=2427

Profile
 
Posted: 12 April 2005 02:29 AM   [ # 28 ]     [ Ignore ]   [ # 28 ]  
Board Apprentice
Total Posts:  2345
Joined  2004-12-30

Blue ? predicted protein
Red ? 9LDB


Hmmmm, stupid presentation.
Edit: That’s in reference to this.

It’s a 3d model of a part of a protein.

Profile
 
Posted: 12 April 2005 03:04 AM   [ # 29 ]     [ Ignore ]   [ # 29 ]  
Board Mentor
Total Posts:  2710
Joined  2004-09-29

http://i4u.shopping.com/xKW-Knight%20Rider%20-%20Season%20Two/NS-1/linkin_id-3060442/GS.html


Knight Rider season 2 dvd :mischeif:  :D

Profile
 
Posted: 12 April 2005 08:12 AM   [ # 30 ]     [ Ignore ]   [ # 30 ]  
Know It All
Total Posts:  6381
Joined  2004-12-22

:oops: I was trying to help someone else with their banner sig

Profile
 
Posted: 12 April 2005 10:11 AM   [ # 31 ]     [ Ignore ]   [ # 31 ]  
In The Club
Total Posts:  479
Joined  2004-08-16

http://www.lcdtvfree.com/index.php?r=112

Hmmm i don’t even know why i have that copied, i don’t even think thats my ref link lol

Profile
 
Posted: 12 April 2005 01:57 PM   [ # 32 ]     [ Ignore ]   [ # 32 ]  
Board Mentor
Total Posts:  3237
Joined  2004-11-09

i have nothing…................yet!  😉

Profile
 
Posted: 12 April 2005 02:06 PM   [ # 33 ]     [ Ignore ]   [ # 33 ]  
Board Mentor
Total Posts:  2838
Joined  2005-05-02

IT IS THE #### MAN I TOLD YOU MAN DONT #### WITH ME MAN!! I FUCKED THAT BITCH FIRST


:lol:  :lol:  :lol:  :lol:  :lol:  :lol:  :lol:  :lol:  :lol:  :lol:  :lol:  😢  😢  😢

Profile
 
Posted: 12 April 2005 02:15 PM   [ # 34 ]     [ Ignore ]   [ # 34 ]  
Board Mentor
Total Posts:  3237
Joined  2004-11-09

At one point, M.C. did utter the phrase “No f—king way,” which I’m sure you’ve seen plastered all over the entertainment news programs (though, ahem, not E! News, thankfully), but she’s clearly joking with a photographer when she says it, and follows it with a hearty laugh. (And not one that makes you think she’s going to rip off her Kimberly wig and kill someone.)

:o

Profile
 
Posted: 12 April 2005 02:36 PM   [ # 35 ]     [ Ignore ]   [ # 35 ]  
In The Club
Total Posts:  420
Joined  2005-02-28

Goes way beyond music with long-awaited features such as a color LCD for viewing photos and videos, a built-in CompactFlash? reader for storing photos and data, and the ability to play games

haha, the description of Archos Gmini 400 off of eCost

Profile
 
Posted: 12 April 2005 02:39 PM   [ # 36 ]     [ Ignore ]   [ # 36 ]  
Know It All
Total Posts:  6381
Joined  2004-12-22

Samurai Cook

lmao!! I forgot about that!

Profile
 
Posted: 12 April 2005 02:41 PM   [ # 37 ]     [ Ignore ]   [ # 37 ]  
Board Mentor
Total Posts:  3237
Joined  2004-11-09

[quote author=“Andreux”]Samurai Cook

lmao!! I forgot about that!

hahaha!  funny!  :lol:

Profile
 
Posted: 12 April 2005 02:43 PM   [ # 38 ]     [ Ignore ]   [ # 38 ]  
Board Mentor
Total Posts:  3237
Joined  2004-11-09

an image, so…........

Profile
 
Posted: 12 April 2005 06:19 PM   [ # 39 ]     [ Ignore ]   [ # 39 ]  
In The Club
Total Posts:  256
Joined  2004-06-18

i was showing my friend an avatar!

Profile
 
Posted: 12 April 2005 08:30 PM   [ # 40 ]     [ Ignore ]   [ # 40 ]  
Know It All
Total Posts:  6381
Joined  2004-12-22

aww, busy panda is too cute. i wanna sleep with busy panda!

Profile
 
Posted: 13 April 2005 07:03 AM   [ # 41 ]     [ Ignore ]   [ # 41 ]  
Board Mentor
Total Posts:  3237
Joined  2004-11-09
[quote author=“Andreux”]aww, busy panda is too cute. i wanna sleep with busy panda!

busy panda…...this is gohans nickname right?  :lol:

Profile
 
Posted: 13 April 2005 07:08 AM   [ # 42 ]     [ Ignore ]   [ # 42 ]  
Administrator
Total Posts:  2574
Joined  2004-12-22

http://blog.seattlepi.nwsource.com/microsoft/archives/004642.html

 Signature 

Gear Live Media Network:
Gadgets, Games, Television, Sports, Food, Social Media, Seattle Mind Camp, Andru, Apps

Profile
 
Posted: 13 April 2005 07:18 AM   [ # 43 ]     [ Ignore ]   [ # 43 ]  
Know It All
Total Posts:  6381
Joined  2004-12-22
[quote author=“drummergirl81”][quote author=“Andreux”]aww, busy panda is too cute. i wanna sleep with busy panda!

busy panda…...this is gohans nickname right?  :lol:

lol, nope. At least, I don’t think so. Someone was referring to an emoticon I posted. They thought it was cute. 😛 I’m not the one that wrote that

Profile
 
Posted: 13 April 2005 07:21 AM   [ # 44 ]     [ Ignore ]   [ # 44 ]  
Board Mentor
Total Posts:  3237
Joined  2004-11-09

http://www.gearlive.com/forums/viewforum.php?f=27

OUR NEW GL FORUM!  YAY!  👏  👏  👏  👏  👏  👏

Profile
 
Posted: 13 April 2005 07:52 AM   [ # 45 ]     [ Ignore ]   [ # 45 ]  
In The Club
Total Posts:  256
Joined  2004-06-18

STEVEN M.

im at my other job, this is the name of a candidate. that was boring.

Profile
 
Posted: 13 April 2005 07:58 AM   [ # 46 ]     [ Ignore ]   [ # 46 ]  
Board Mentor
Total Posts:  3237
Joined  2004-11-09

rcia was mov

:?

i have no idea what that is lol!  this is what happens when you have auto copy on!

Profile
 
Posted: 13 April 2005 08:34 AM   [ # 47 ]     [ Ignore ]   [ # 47 ]  
Board Apprentice
Total Posts:  2345
Joined  2004-12-30

http://www.bt.usf.edu/

Profile
 
Posted: 13 April 2005 08:51 AM   [ # 48 ]     [ Ignore ]   [ # 48 ]  
Board Apprentice
Total Posts:  1240
Joined  2004-12-22

SendKeys “{left}”

Yeah….haha

-=relik

Profile
 
Posted: 13 April 2005 08:57 AM   [ # 49 ]     [ Ignore ]   [ # 49 ]  
Board Apprentice
Total Posts:  1095
Joined  2005-07-06

http://homestarrunner.com/sbemail.html

Profile
 
Posted: 16 April 2005 12:03 AM   [ # 50 ]     [ Ignore ]   [ # 50 ]  
Know It All
Total Posts:  6381
Joined  2004-12-22

Now,  one would think that I shouldn’t keep things from my husband. I’m sure he has his own thing that he uses to get #### off his chest. Plus he’s like 10 times smarter than me.. so I’m not sure how he would react to the stupid #### that runs threw my head. I think he pretends I’m not crazy.. or he lives with it cause he thinks I have a nice ass.

Profile
 
 < 1 2 3 4 >  Last ›
2 of 5