Noticed that the "Character Info" page displayed job numbers rather than names. I borrowed the code from another page and replaced the job line with the following:
Code:
<strong>Job:</strong> ";
if ($c['job']=="000")
echo "Beginner";
if ($c['job']=="100")
echo "Warrior";
if ($c['job']=="110")
echo "Fighter";
if ($c['job']=="120")
echo "Page";
if ($c['job']=="130")
echo "Spearman";
if ($c['job']=="111")
echo "Crusader";
if ($c['job']=="121")
echo "White Knight";
if ($c['job']=="131")
echo "Dragon Knight";
if ($c['job']=="112")
echo "Hero";
if ($c['job']=="122")
echo "Paladin";
if ($c['job']=="132")
echo "Dark Knight";
if ($c['job']=="200")
echo "Magician";
if ($c['job']=="210")
echo "Wizard";
if ($c['job']=="220")
echo "Wizard";
if ($c['job']=="230")
echo "Cleric";
if ($c['job']=="211")
echo "Mage";
if ($c['job']=="221")
echo "Mage";
if ($c['job']=="231")
echo "Priest";
if ($c['job']=="212")
echo "Arch Mage";
if ($c['job']=="222")
echo "Arch Mage";
if ($c['job']=="232")
echo "Bishop";
if ($c['job']=="300")
echo "Bowman";
if ($c['job']=="310")
echo "Hunter";
if ($c['job']=="320")
echo "Crossbowman";
if ($c['job']=="311")
echo "Ranger";
if ($c['job']=="321")
echo "Sniper";
if ($c['job']=="312")
echo "Bow Master";
if ($c['job']=="322")
echo "Crossbow Master";
if ($c['job']=="400")
echo "Thief";
if ($c['job']=="410")
echo "Assassin";
if ($c['job']=="420")
echo "Bandit";
if ($c['job']=="411")
echo "Hermit";
if ($c['job']=="421")
echo "Chief Bandit";
if ($c['job']=="412")
echo "Night Lord";
if ($c['job']=="422")
echo "Shadower";
if ($c['job']=="500")
echo "Pirate";
if ($c['job']=="510")
echo "Brawler";
if ($c['job']=="520")
echo "Gunslinger";
if ($c['job']=="511")
echo "Marauder";
if ($c['job']=="521")
echo "Buccaneer";
if ($c['job']=="512")
echo "Outlaw";
if ($c['job']=="522")
echo "Corsair";
if ($c['job']=="900")
echo "GMs";
if ($c['job']=="910")
echo "SuperGM";
if ($c['job']=="1000")
echo "Noblesse";
if ($c['job']=="1100")
echo "Dawn Warrior";
if ($c['job']=="1110")
echo "Dawn Warrior 2";
if ($c['job']=="1111")
echo "Dawn Warrior 3";
if ($c['job']=="1112")
echo "Dawn Warrior 4";
if ($c['job']=="1200")
echo "Flame Wizard";
if ($c['job']=="1210")
echo "Flame Wizard 2";
if ($c['job']=="1211")
echo "Flame Wizard 3";
if ($c['job']=="1212")
echo "Flame Wizard 4";
if ($c['job']=="1300")
echo "Wind Archer";
if ($c['job']=="1310")
echo "Wind Archer 2";
if ($c['job']=="1311")
echo "Wind Archer 3";
if ($c['job']=="1312")
echo "Wind Archer 4";
if ($c['job']=="1400")
echo "Night Walker";
if ($c['job']=="1410")
echo "Night Walker 2";
if ($c['job']=="1411")
echo "Night Walker 3";
if ($c['job']=="1412")
echo "Night Walker 4";
if ($c['job']=="1500")
echo "Thunder Breaker";
if ($c['job']=="1510")
echo "Thunder Breaker 2";
if ($c['job']=="1511")
echo "Thunder Breaker 3";
if ($c['job']=="1512")
echo "Thunder Breaker 4";
if ($c['job']=="2000")
echo "Legend";
if ($c['job']=="2100")
echo "Aran";
if ($c['job']=="2111")
echo "Aran 2";
if ($c['job']=="2112")
echo "Aran 3";
echo "<br/>";
Of course it makes more sense to embed the job list as an include so that it only has to be updated once. I imagine this was on the to do list. Not a biggie. Just thought I'd throw it in here to help someone.