Re: 1h work to solve the dumbest error there is
Is it this
printf("failed: %s\n", mysql_error($mysql));
but it should be
print("failed: %s\n", mysql_error($mysql));
????
Re: Staff Positions Mod
I know there are people who can make it in seconds but I made it for people who want to upgrade there game and add something like this but don't know much php.
I may make a better one with SQL lol
This was made from scratch...
What it does is show the staff members position say owner or fed warden...
Make a new file called staffpos.php and then paste this code in it...
<?php
include "globals.php";
print "<table width=75% cellspacing=1 class='table' bgcolor=> <tr style='background:gray'><th>Staff Position</th> <th>Name</th> <th>Staff Level</th></tr>
<tr>
<td>Postion</td>
<td>[url='viewuser.php?u=id here']name here and id here[/url]</td>
<td>Staff level here</td>
</tr>
<tr>
<td>Postion</td>
<td>[url='viewuser.php?u=id here']name here and id here[/url]</td>
<td>Staff level here</td>
</tr>
<tr>
<td>Postion</td>
<td>[url='viewuser.php?u=id here']name here and id here[/url]</td>
<td>Staff level here</td>
</tr>
</table>";
$h->endpage();
?>
Put the stuff in manually and add as many as you want.
Goto explore.php and add this where ever you want
<a href=staffpos.php>Staff Positions</a>
Then your done.
Hope you like it :-)