if ($info[0] > 2999 and $info[1] < 2999) {
$img = imagescale($image, 1500); //resize
} else if ($info[0] < 2999 and $info[1] > 2999) {
$img = imagescale($image, 1500); //resize
} else if ($info[0] > 2999 and $info[1] > 2999) {
$img = imagescale($image, 1500); //resize
} else if ($info[0] < 2999 and $info[1] < 2999) {
$img = $image;
}
//вывод в тексте кол-во номеров выбрано в селекте
$('#kolvonomerov').on('change', function() {
var selectedText = $('option:selected', this).text();
$("#allnom").text(selectedText);
});
//вывод в тексте кол-во дней выбрано в селекте
$('#kolvoday').on('change', function() {
var selectedText = $('option:selected', this).text();
$("#allday").text(selectedText);
});
$(totalPrice).html(number_format(rezult(), 0, '.', '.');