I need to add the data to the database and meanwhile load into a select options menu, I successfully added the data and when loading the data gets duplicated in the options menu
function manageRow(data) {
var rows = '';
$.each( data, function( i, o ) {
rows += '<option>'+o.salary_wage+'</option>';
});
$(".selectpicker111").append(rows);
}