Hi Chad
You do not need a Telnet client. Just install Myodbc and the mysql client.
To connect to your server, type "mysql -h yourhostname -u userID"
If you defined a password for the userID, add -p at the end of the line. The
system will prompt you for the password. See manual for more options.
You are building a "many to many" relationship.
How to do it:
* Each staff member should have an unique ID (eg StaffMember_ID) in the
Staff table;
* Each subject has an ID in the SubjectTitles table;
* and you need a third table, with two fields: StaffMember_ID and
SubjectTitle_ID, plus extra da