Welcome, Guest. Please Login or Register.
July 19, 2025, 09:29:33 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  English User Help  |  English Help  |  Hidden Moderator From Diff Webpage « previous next »
Pages: [1] Reply Ignore Print
Author Topic: Hidden Moderator From Diff Webpage  (Read 373 times)
Valconeye
Full Member
***
Posts: 190


Hidden Moderator From Diff Webpage
« on: August 28, 2003, 08:19:00 PM »
Reply with quote

YaBB SE Version: 1.5.4
PHP Version: <= 4.1.0
MySQL Version: <= 3.21.x
Server Platform: Unix, Linux, or BSD
Link to Forum:

Problem Description:
I was wondering how i could have a "hidden" pannel, or section from a different webpage, for example, http://www.warcraftwars.com see the "home" tab or pannel, i want to add a place where only moderator over a certian board can see.
Logged
Metho
Sr. Member
****
Posts: 342


I'm a llama!

Re:Hidden Moderator From Diff Webpage
« Reply #1 on: August 28, 2003, 09:42:28 PM »
Reply with quote

It's really simple, actually. In your site, design the html or php that will make the panel and put it in there. Then just attach an if statement to the top and bracket/echo your html stuff. Lots of examples within yabbse's code. You can do a simple if they are a moderator, or you can even go specific user(s), something like this:// HTML BEFORE YOUR BOX

<?PHP
global $db_prefix, $username
$request = mysql_query("SELECT moderators FROM {$db_prefix}boards WHERE moderators='$username' LIMIT 1;") or database_error(__FILE__, __LINE__);

if ($request != 0)
{
echo '
// HTML code to show panel
}
?>
// Other HTML for rest of page
That would be roughly for a moderator of any board. For a specific user or users:// HTML BEFORE YOUR BOX

<?PHP
global $username

if ($username == 'Youruser')
{
echo '
// HTML code to show panel
}
?>
// Other HTML for rest of page


If you had the page code, you could post it or send it and I'd be able to give you a bit more specific example.

Methonis
Logged

Pages: [1] Reply Ignore Print 
YaBB SE Community  |  English User Help  |  English Help  |  Hidden Moderator From Diff Webpage « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.123 seconds with 20 queries.