Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I had table created in Database.

First Table Name: Registration
second Table Name. MasterTable
a,b users registrad in in Registration Table(through frontend Registration form);

"a" user after login enter 3 records enter in to the MasterTable (through Frontend MasterDetails)
"b" user after login enter 5 records enter in to the MasterTable (through Frontend MasterDetails)

a,b users enterd details save in to Database.

a,b users after entry finished and logOut.

Next "a" User Login.
How to show "a" user entered records
next "b" User Login.
How to show "b" user entered records
How to get specific Login user Entryer details from Database

What I have tried:

I had table created in Database.

First Table Name: Registration
second Table Name. MasterTable
a,b users registrad in in Registration Table(through frontend Registration form);
Posted
Updated 29-Dec-21 0:22am
v2
Comments
CHill60 29-Dec-21 6:12am    
Please use the "Improve question" link to add some detail to your question - some sample data for each table for a start. Then in the "What I have tried" section add the code that you have already tried

1 solution

If you want to track user entries, you're going to have to include the user ID (usually a numeric value) in the table that contains the user-entered data. This would require appropriate JOIN clauses to retrieve the data later (ostensibly, to show data entered by a particular user).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900