You need to sort study up on database design.
They probably have a USER table, each user record includes all the labels that the user has designated.
CREATE TABLE userlabel (
userid INT NOT NULL ,
welcomeMessage VARCHAR( 255 ) NOT NULL ,
menuLabel1 VARCHAR( 255 ) NOT NULL ,
formLabel1 VARCHAR( 255 ) NOT NULL ,
etc
One record per user.
Each datatable includes a userid as a key
SELECT * from propspect_table WHERE userid='12345'
etc