Staredit Network

Staredit Network -> Staff Lounge -> Post Titles mishap
Report, edit, etc...Posted by BeeR_KeG on 2005-12-17 at 14:48:46
QUOTE
0 Just here for the pie
5 Newbie
25 Super Newbie
50 Has nothing else better to do
100 Elite
300 Look mom - I'm a regular!
500 Uber Slayer
875 Future Blizzard Employee
1250 Why haven't I left yet?
1625 Posting Spree!
2000 I hacked the forums!
2375 Uberman
2750 Worship me
3125 Provides Staredit Network many hits
3500 I spam too much
3875 Needs to get a real day job
3875 WAKKA WAKKA!
4250 Speedy AOL user 4250
5000 Staredit Network God


3875 is twice.
Report, edit, etc...Posted by Mini Moose 2707 on 2005-12-17 at 17:03:48
Those post titles suck anyway. I should redo them, with new images, too. Custom ranks for staff and admins too. ^_^

EDIT: Aw, we can't have custom ones... unless I code. tongue.gif
Report, edit, etc...Posted by BeeR_KeG on 2005-12-17 at 18:56:58
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!
Next Page (1)