Sinisterly
[MyBB] Any tutorials you'd like to see? - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Design (https://sinister.ly/Forum-Design)
+--- Forum: Web Design (https://sinister.ly/Forum-Web-Design)
+--- Thread: [MyBB] Any tutorials you'd like to see? (/Thread-MyBB-Any-tutorials-you-d-like-to-see)

Pages: 1 2 3 4 5 6 7 8 9


RE: Any tutorials you'd like to see? - Jasper - 10-30-2015

(10-30-2015, 10:27 AM)Believer Wrote: yes. how to make usergroup page [dynamic]

Just select the usergroups table and go from there, like:

Code:
$gids = array('1','2','3'); $glist = $db->query("SELECT * FROM `".TABLE_PREFIX."usergroups` WHERE `gid`='$gids'"); while($group = $db->fetch_array($glist)) { //And so on... }



RE: Any tutorials you'd like to see? - Quanity - 10-30-2015

(10-30-2015, 12:38 PM)Maeko Wrote:
(10-30-2015, 10:27 AM)Believer Wrote: yes. how to make usergroup page [dynamic]

Just select the usergroups table and go from there, like:

Code:
$gids = array('1','2','3'); $glist = $db->query("SELECT * FROM `".TABLE_PREFIX."usergroups` WHERE `gid`='$gids'"); while($group = $db->fetch_array($glist)) { //And so on... }
ik this. but the owners name ? i dont see taht anywhere tehre ? is there the uid of leader


RE: Any tutorials you'd like to see? - Jasper - 10-30-2015

(10-30-2015, 12:59 PM)Believer Wrote:
(10-30-2015, 12:38 PM)Maeko Wrote:
(10-30-2015, 10:27 AM)Believer Wrote: yes. how to make usergroup page [dynamic]

Just select the usergroups table and go from there, like:

Code:
$gids = array('1','2','3'); $glist = $db->query("SELECT * FROM `".TABLE_PREFIX."usergroups` WHERE `gid`='$gids'"); while($group = $db->fetch_array($glist)) { //And so on... }
ik this. but the owners name ? i dont see taht anywhere tehre ? is there the uid of leader

Inside the $group loop, add this:

Code:
$leaders= $db->query("SELECT * FROM `".TABLE_PREFIX."groupleaders` WHERE `gid`='$gids'"); $leadersarry = array(); while($leader = $db->fetch_array($leaders)) { //Things here... }



RE: Any tutorials you'd like to see? - Jasper - 11-30-2015

Bump.


RE: Any tutorials you'd like to see? - ProfessionalSkid - 11-30-2015

How to get mad bitches


RE: Any tutorials you'd like to see? - Jasper - 11-30-2015

(11-30-2015, 09:49 PM)ProfessionalSkid Wrote: How to get mad bitches

Can you be serious for once? thanks.


RE: Any tutorials you'd like to see? - ProfessionalSkid - 11-30-2015

(11-30-2015, 09:50 PM)Furry Wrote:
(11-30-2015, 09:49 PM)ProfessionalSkid Wrote: How to get mad bitches

Can you be serious for once? thanks.
I am being serious


RE: Any tutorials you'd like to see? - Jasper - 11-30-2015

(11-30-2015, 09:51 PM)ProfessionalSkid Wrote:
(11-30-2015, 09:50 PM)Furry Wrote:
(11-30-2015, 09:49 PM)ProfessionalSkid Wrote: How to get mad bitches

Can you be serious for once? thanks.
I am being serious

No, you're not. Also these tutorials you guys can request is for MyBB.


RE: Any tutorials you'd like to see? - Krados - 11-30-2015

A tutorial on how to fully use the Inspect Element would be appreciated, thanks!


RE: Any tutorials you'd like to see? - Jasper - 11-30-2015

(11-30-2015, 10:04 PM)Forgotten Wrote: A tutorial on how to fully use the Inspect Element would be appreciated, thanks!

Are you serious?