Array
(
[0] => Array
(
[seller_name] => La2ha STORE
[dvr_title] => Регистратор 1
)
[1] => Array
(
[seller_name] => Test
[dvr_title] => Регистратор 1
)
)
array(
0 => array(
'vdr_title' => 'Название регистратора',
'sellers' => array(
0=>array(
'seller_title'=>'Название придавца',
'seller_price'=>'Цена продавца'
),
1=>array(
'seller_title'=>'Название придавца 1',
'seller_price'=>'Цена продавца 1'
)
)
)
);
function submit_data(method) {
$.ajax({
url:'/admin/ajax/photo/form_submit/<?=$item['id']?>',
type:'POST',
data:$('form').serialize(),
dataType:"json",
success:function (data, textStatus) {
if (data.error) {
$('#modal_msg h3').html('Ошибка')
$('#modal_msg .modal-body').html(data.error)
$('#modal_msg').modal('show')
} else {
if (method == 'apply') {
$('#modal_msg h3').html('Успех')
$('#modal_msg .modal-body').html(data.msg)
$('#modal_msg').modal('show')
} else window.location.replace("<?=current_url(2)?>");
}
}
});
}