Check_List:
FOR tagNum = 1 to 5 ' scan through known tags
FOR idx = 0 TO 9 ' scan bytes in tag
READ (((tagNum-1) * 10) + idx), char ' get tag data from table
IF (char <> buf(idx)) THEN Bad_Char ' compare tag to table
NEXT
GOTO Tag_Found ' all bytes match!
Bad_Char: ' try next tag
NEXT
whenever the PIC identifies a tag stored in the EEPROM it still holds onto the "tagNum" variable. from there you can have your program branch off with the "tagNum" variable to display whatever you want. for argument sake lets say your third RFID badge is yours then:

Code:
Tag_Found:
IF tagNum = 3 then displayName
GOTO Main

displayName:
Serout2 portc.0,84,["ASTANAPANE"]    'assuming your display is on portc.0 @ 9600 baud
pause 5000                                       'Pause 5 sec then clear display
gosub CLRLCD
Goto main
Hope this helps... Cheers