We needed to add two new fields (or new columns): phone numbers, and student numbers (or student id's). 1) Add columns to tables mrbs_repeat and mrbs_entry (or mrbscustomsized_entry etc): alter table mrbs_repeat add column student_id int; alter table mrbs_entry add column student_id int; 2) Edit edit_users.php, mrbs_sql.inc, edit_entry_handler.php (we also edited search.php and report.php. I suggest you search for repeat_id (or private if you are using the latest version with it such as the SVN) and use those entries as a guide for creating new entries. 1: account_fraser% mysql -u mysqlusername -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8126 to server version: 4.0.20-standard-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> use mrbs_database; Database changed mysql> alter table mrbs_repeat add column phone VARCHAR (50); Query OK, 5 rows affected (0.52 sec) Records: 5 Duplicates: 0 Warnings: 0 mysql> show tables; +--------------------------+ | Tables_in_mrbs_database | +--------------------------+ | mrbs_area | | mrbs_entry | | mrbs_repeat | | mrbs_room | | mrbs_variables | +--------------------------+ 9 rows in set (0.18 sec) mysql> alter table mrbs_entry add column phone VARCHAR (50); Query OK, 412 rows affected (0.44 sec) Records: 412 Duplicates: 0 Warnings: 0 alter table mrbs_repeat add column student_id int; alter table mrbs_entry add column student_id int; --------- Additional mySQL commands: mysql> show columns from mrbs_entry;