Screw your laziness Moose, code away!
Unless you want me to code, and IP knows how much I can code and it isn't very much.
The code for that shouldn't be very hard to do anyways, just use $MEMBERGROUP and then echo out the image or whatever where the bars are now.
Just in case you all think I can't code in PHP:
CODE
<?php
$TXT="This is my first PHP page";
$TXT2="This is my second PHP text";
echo $TXT."<br />".$TXT2;
/* I have no clue of what I should put in here */
echo"<br />";
$COMEBACK="<br />Come back in 30 seconds";
$d=date("s");
if ($d<"30")
{
echo "It's the first 30 seconds of this minute";
}
else
{
echo "It's the last 30 seconds of this minute";
}
echo $COMEBACK;
$i=date("i");
switch($i)
{
case "{i<=15}{i>=0}":
echo "It's the first quarter of this hour";
break;
case "{i<=30}{i>15}":
echo "It's the second quarter of this hour";
break;
case "{i<=45}{i>30}":
echo "It's the third quarter of this hour";
break;
case "{i<=59}{i>45}":
echo "It's the fourth quarter of this hour";
break;
Default:
echo "If you see this message, either time doesn't exist or the code is messed up";
}
include ("form.php");
echo $_POST["filename"];
echo $_POST["file"];
echo $_POST["Filte Type"];
echo $_POST["name"]; ?>
[b]form.php[/b]
<table align="center" width="100%" border="1" bordercolor="#3399cc" cellspacing="1" cellpadding="1" valign="top">
<tr>
<td height="20" bgcolor=#336699 valign="center"><font face="verdana" size="2">Upload your Content</font></td>
</tr>
<tr>
<td valign="top">
<form action="index.php" method="POST">
Enter the name of the file to be submitted: <input type="text" name="filename" /><br />
Select the file you will submit: <input type="file" name="file" /><br />
Select the type of file you will submit:
<select name="File Type">
<option value="Tutorial">Tutorial
<option value="Article">Article
<option value="UMS Map">UMS Map
<option value="Melee Map">Melee Map
<option value="Screenshot">Screenshot
<option value="Replay">Replay
<option value="Other">Other
</select>
<br />
Enter your name: <input type="text" name="name" /></br>
<input type="submit" />
</form>
</td>
</tr>
</table>
Yes, BeeR does simple codes!