If say, I logged in to my own website, I want to return data that I have submitted to the database. Problem is, how do I query the database to return only my data?
I understand that the query would like this using PreparedStatement:
select * from TableName where Username = ?
I want to add the parameter depending on who is logged in, not just 1 person. Sorry I know I might not explained it well, please ask if not clear.
Edit: If I login, I expect the viewreports.jsp to show the reports I have submitted