{
firstname: $('input[name="name"]').val(),
telephone: $('input[name="tel"]').val(),
service: $('input[name="service"]').val(),
},
$(document).ready(function() {
$('[type="submit"]').on('click', function() {
$.ajax({
url: 'index.php?route=demo/test&language=ru-ru',
type: 'POST',
dataType: 'json',
data: {
firstname: $(this).parents('form').find('input[name="name"]').val(),
telephone: $(this).parents('form').find('input[name="tel"]').val(),
service: $(this).parents('form').find('input[name="service"]').val(),
},
success: function(data) {
if(data.success) {
alert("Заметка добавлена!")
} else {
alert("Ошибка записи!")
}
}
});
});
});
$timestamp = strtotime($old_date);
$newTimestamp = $timestamp + 60*60*24*10;
$new_date = date('Y-m-d H:i:s',$newTimestamp);
$arr = [123456789];
$str = strval($arr[0]); // (strval) нужен если тип данных у элемента числовой. Если число хранится в виде строки, то функция strval не нужна
$newStr = '';
for($i=0;$i<strlen($str);$i++;) {
$newStr .= $str[$i] . ' ,';
}
$arr[0] = $newStr;
@media only screen and (min-width: 1450px) {
.OrderButton{
left: 40%!important;
width: 10%important;
border: 1rem solid white!important;
font-size: 143.4%!important;
}
}
$result = array();
$rc->setCallback(function(\RollingCurl\Request $request, \RollingCurl\RollingCurl $rollingCurl) {
$t = json_decode($request->getResponseText());
foreach($t as $key=>$value) {
$new[$key]['ID'] = $value->I;
}
print_r($t);
});
Замените на $result = []; //забудьте про array(), это очень старая фигня
$rc->setCallback(function(\RollingCurl\Request $request, \RollingCurl\RollingCurl $rollingCurl) {
$t = json_decode($request->getResponseText());
$new = []; //не забудьте объявить $new
foreach($t as $key=>$value) {
$new[$key]['ID'] = $value->I;
}
$result[] = $new; //в массив $result мы добавляем массив $new
//print_r($t);
return $result;
});
$arr = $rs->execute();
print_r($arr);
$('#industry > option:selected').val()
$modifyTitle = explode(' за ', $title)[0];