value=""
у инпута,<input value="<?php echo $my_value; ?>" />
if ($row["coldwater"] > $coldwater)
{
echo"Cледующее показание по холодной воде не может быть меньше предыдущего <br> ";
echo '<a href="http://localhost/Ignatjev/Index.php"><button>Главная страница</button></a> <br>';
echo "<html><head><meta http-equiv='Refresh' content='10; URL=index.php'></head><body></body></html>";
exit();
}
<?php if ($row["coldwater"] > $coldwater): ?>
Cледующее показание по холодной воде не может быть меньше предыдущего <br>
<a href="http://localhost/Ignatjev/Index.php"><button>Главная страница</button></a> <br>
<html><head><meta http-equiv='Refresh' content='10; URL=index.php'></head><body></body></html>
<?php exit(); endif; ?>
<script>
$(function(){
$('#menu-top a').on('click', function(){
let url = $(this).attr('href');
$.ajax({
type: "POST",
url: url
}).done(function(data){
$("#content").html(data);
});
return false;
})
})
</script>
<?php
$email = "кудаприходитпочта@mail.ru";
$title = "какая-то тема";
$headers = "Content-type: text/html; charset=utf-8";
$msg = "<p>Имя отправителя: ".$_POST['name']."</p>
<p>Email отправителя:".$_POST['email']."</p>
<p>Сообщение отправителя: ".$_POST['message']."</p>";
// отправляем почту
mail($email, $title, $msg, $headers);
//navigation
$('.navigation').onePageNav({
begin: function() {
console.log('start');
},
end: function() {
console.log('stop');
},
scrollOffset: 0
});
handleClick: function(e) {
var self = this;
var $link = $(e.currentTarget);
var $parent = $link.parent();
var newLoc = '#' + self.getHash($link);
if(!$parent.hasClass(self.config.currentClass)) {
//Start callback
if(self.config.begin) {
self.config.begin();
}
//Change the highlighted nav item
self.adjustNav(self, $parent);
//Removing the auto-adjust on scroll
self.unbindInterval();
//Scroll to the correct position
$.scrollTo(newLoc, self.config.scrollSpeed, {
axis: 'y',
easing: self.config.easing,
offset: {
top: -self.config.scrollOffset
},
onAfter: function() {
//Do we need to change the hash?
if(self.config.changeHash) {
window.location.hash = newLoc;
}
//Add the auto-adjust on scroll back in
self.bindInterval();
//End callback
if(self.config.end) {
self.config.end();
}
}
});
}
e.preventDefault();
}
// отправка сообщения
mail($sendto, $subject, $msg, $headers);
// отдать js скрипту номер заказа
echo $Nzakaz;
success: function(data) {
$('#zakaz').find('input[type=text],input[type=email],input[type=tel], textarea').val('');
$('#zakaz').find("input[type=checkbox], input[type=radio]").prop("checked", "");
console.log(data); // в переменной data и будет ваш номер, далее передавайте его как хотите, например так:
$('#zakazbModal').html(data);
}
<form>
и 2) через js ajax'ом.function fadePreLoader(el) {
if (isVisiblePreloader) {
el.style.opacity = 1;
var interPreLoader = setInterval(function () {
el.style.opacity = el.style.opacity - 0.05;
if (el.style.opacity <= 0.05) {
clearInterval(interPreLoader);
preLoader.style.display = "none";
}
}, 16);
isVisiblePeloader = false;
}
}
<div id="before-load"></div>
<script>
var preLoader = document.getElementById("before-load");
isVsiblePreloader = true;
setTimeout(function () {
fadePreLoader(preLoader);
}, 10000);
</script>
window.onload = function () {
fadePreLoader(preLoader);
};
isVisiblePeloader = false;
, что предотвратит скрытие прелоадера второй раз. $('#dataConfirmOK').click(function () {
return true; // <-- ошибка
})