Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 85
9 members and 76 guests
achtso4illesttj, claudiamazzonif, getzw5tridofy6n, horbd4aseracidn, howsztoge2xwtp, hypye4notherape, res3sawumewotg4, snahwpbaxj2fckc, watpperpr
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
tattoo fonts
http://www.checkoutmyink.com/category/tattoo-fonts-tattoo

Go Back   Nukemods Forum > PHP-Nuke 6.5 to 6.9 > Nuke 6.5 to 6.9 - Modules

Reply
 
LinkBack Thread Tools Display Modes
Im Completley dumbfounded
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 14
Join Date: Jul 2003
Im Completley dumbfounded - 08-08-2003, 02:03 AM

Im trying to make a list of clan members that are in my clan but i have friends registered that arnt in my clan.
Basically i want to keep the Members_List but also have a Clan_Members page that will display the people in my clan. Can anyone help me out?

I have no clue what to do.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Junior Member
 
Status: Offline
Posts: 14
Join Date: Jul 2003
08-08-2003, 03:47 AM

I figured it out. All i need now is howto put a Clan Members link in the admin control panel so that i can edit members like add and remove in certain catagories
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 14
Join Date: Jul 2003
08-08-2003, 03:51 AM

Code:
<?php

if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
    die ("You can't access this file directly...");
}

require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);

$index = 0;
$subject = "$sitename "._CLANMEMBERS."";
$regmembers = ""._REGMEMBERS."";
$calmembers = ""._CALMEMBERS."";
$lanmembers = ""._LANTEAM."";
$regteam = ""._REGTEAM."";
$calteam = ""._CALTEAM."";
$lanmember = ""._LANMEMBERS."";
/**********************************/

include("header.php");


OpenTable();
print "$subject";
print "$regmembers";
print "$regteam";
print "$calmembers";
print "$calteam";
print "$lanmembers";
print "$lanmember";
CloseTable();
  
include("footer.php");

?>
Thats my code for Clan_Members just used a language file to put in the info
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31