Portal Themes

Blocks - Looking for block

gatekeeper - Mar 08, 2008 - 12:32 AM
Post subject: Looking for block
Can anyone tell me where I can get a block that will list clan members only for phpnuke. I have a members list but that list contains all registered users on the web site. I need something like that one but will only list clan members. Can someone help? thanks.
mars - Mar 08, 2008 - 12:46 AM
Post subject: RE: Looking for block
Unless you are running something like VWar there isn't anything built in.
You could do a plain HTML block and list them that way.
gatekeeper - Mar 08, 2008 - 02:08 AM
Post subject: RE: Looking for block
do you know were a noob can get step-by-step directions on how to do that? thanks
mars - Mar 08, 2008 - 01:23 PM
Post subject: RE: Looking for block
You could do something like this

Code:

<?php
if (eregi("block-guild-members.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}   
$title = "Guild Members";

$content  =  "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">";
$content  .= " <tr>";
$content  .= "<td valign=\"top\"><a href=\"modules.php?name=Your_Account&op=userinfo&username=Mars\">Mars</a></td>";
$content  .= "</tr>";
$content  .= " <tr>";
$content  .= "<td valign=\"top\"><a href=\"modules.php?name=Your_Account&op=userinfo&username=Bob\">Bob</a></td>";
$content  .= "</tr>";
$content  .= "</table>";
?>


Then to add more you just copy these 3 lines and change the name and link.

Code:

$content  .= " <tr>";
$content  .= "<td valign=\"top\"><a href=\"modules.php?name=Your_Account&op=userinfo&username=Bob\">Bob</a></td>";
$content  .= "</tr>";

gatekeeper - Mar 15, 2008 - 06:12 AM
Post subject: RE: Looking for block
ive got the code part, thanks but im now trying to get it to scroll but for the life of me i can not get it to scroll up and down in php, it does however scroll side to side. i can get it to scroll up and down in html.
mars - Mar 15, 2008 - 02:48 PM
Post subject: RE: Looking for block
No idea on how to make it scroll sorry.
All times are GMT - 5 Hours
Powered by PNphpBB2 © 2003-2006 The PNphpBB Group
Credits