For those who have the same concern as i am; Since the table was using auto increment for ID; All i needed was to check the highest id save for that specific employee; My code is shown below
SELECT * FROM wexp WHERE LNAME='$lname'&& FNAME='$fname' ORDER BY id DESC LIMIT 1
solved How to fetch the first row a user has save on a table in php-mysql