However,
it sounds like you ar e getting to the heart of relational database issues, and you really should start looking at linked tables.
e.g.:
You have one main table with a bunch of info for pages. Each page get a page id in this table.
In an other table, you have eg. users (Rob, Bob, Bo and luke). The users get their ID here, and all the details of these persons are stored in this table.
In a third table you store the relation between pages and people./
Page_nr | Person Nr.
This way any person can be match against any table.
Great benefit is the ability to change the details of people without having to go to each record in the pages database and modify it. It is called database nortmalisation, I believe, in case you want to search for more info