Help with editing pages

visa

New Member
Sep 4, 2015
2
0
Hey i'm new to the Habbo Retro scene (aka making retros and stuff) but im quite eager to learn i'm currently working on just something small and i was wondering how i edit the staff.php page it will not let me post links... so i can't really show you what i mean but my staff page is basically blank with just a infomation box my skype is lilroofus if you want to see what it looks like but i was just wondering how i'd edit it and add people and sections to it

Thanks.
 
Oct 11, 2014
1,071
256
if you are using azure emulator.
Code:
-- ----------------------------
-- Table structure for `ranks`
-- ----------------------------
DROP TABLE IF EXISTS `ranks`;
CREATE TABLE `ranks` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `badgeid` varchar(5) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of ranks
-- ----------------------------
INSERT INTO `ranks` VALUES ('1', 'User', null);
INSERT INTO `ranks` VALUES ('2', 'VIP', 'VIP');
INSERT INTO `ranks` VALUES ('3', 'Silver Hobba', 'NWB');
INSERT INTO `ranks` VALUES ('4', 'Gold Hobba', 'HBA');
INSERT INTO `ranks` VALUES ('5', 'Super Hobba', 'HBA');
INSERT INTO `ranks` VALUES ('6', 'Moderator', 'ADM');
INSERT INTO `ranks` VALUES ('7', 'Administrator', 'ADM');
Run That Sql, and edit it.
 

JayC

Always Learning
Aug 8, 2013
5,494
1,398
Post your code for your page, it looks like there is a slight problem grabbing the users who are rank (Or you are not at/above the rank that is being asked for)
 

Users who are viewing this thread

Top