MyBB Community Forums

Full Version: [PHP] Anyone have this script?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

i searched on web for this script, but i cant find it, the demo of script is here:


http://forum.mybboard.pl/groups.php?gid=2
http://ugraj.com/groups.php?gid=2
http://forum.pinguyos.com/groups.php?gid=2
http://www.thespriterszone.com/forum/groups.php?gid=2

etc etc...

Any one have it?
As i can see you link a member list?
yes, that one
MyBB has a memberlist by default. If you want a script that displays all of the users in a specified group, head on over to Pirata's Forum and grab the view groups plugin. Smile
yourforumurl/memberlist.php

That's the place where you will find what are you looking for or if you want it impoved read what Seabody menitoned.
(2013-01-27, 10:43 AM)Seabody Wrote: [ -> ]MyBB has a memberlist by default. If you want a script that displays all of the users in a specified group, head on over to Pirata's Forum and grab the view groups plugin. Smile

Thanks for this plugin, with little PHP script i can do page like posted in 1st post, thats the code:

<?php
$gid = $_GET['gid'];
$ch = curl_init("http://localhost/index.php?action=viewgroups&gid=$gid");
curl_setopt($ch, CURLOPT_USERAGENT, 'Groups');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
curl_setopt($ch, CURLOPT_TRANSFERTEXT, 1);
$echo = curl_exec($ch);
echo $echo;
?>


Topic solved, can be closed Big Grin