Although there are many ways to do this, most of them difficult, I prefer a more simple approach.
You could use a foreign key to link the events....
Or if you don't plan to ever renumber your users, set the users table up as :
uid, username, realname, itemswatched
and the items table:
iid, itemname, itemdesc
In the itemswatched, simply place the item id of the item to be watched.
Then when the user is logged in, scan that for all items. Seperate them by '|'.
Select itemswatched from usertable;
$items = explode($mysql_result[0]);
there, $items[0] = item1
etc.etc. ad naseum.