Each image has a file name, and a parent directory (path). What does the images_path field in your database hold? File name, path, or both?
$src=$file_path.'/'.$row["images_path"];
Your code already concatenates the path regardless of your images_path value. If that field also contains the path, then you will of course have duplicate path, which is wrong.