<?php
if ($user->ban == 1){
unset ($_SESSION['auth']);
}
if (!$_SESSION['auth']){
header('location: /auth?t=login');
}
?>
<!doctype html>
<html>
<?php require 'head.php'?>
<body>
<?php require 'header.php'?>
<div class="container">
<div class="content">
<?php if ($g['t'] == 'be'){ require 'file.php'; } ?>
</div>
</div>
<?php require 'footer.php'?>
</body>
</html>
$(document).ready(function(){
$("#sending").submit(function() { //устанавливаем событие отправки для формы с id=form
var form_data = $(this).serialize(); //собираем все данные из формы
$.ajax({
type: "POST", //Метод отправки
url: "send.php", //путь до php файла отправителя
data: form_data
});
return false;
});
});
$.post("send.php", form_data, function(response) {
console.log(response);
});
return false;
раз уж вы перехватываете его и отправляете форму ajax-ом. К примеру зайдет qiwi кошелек и от туда отправить деньги на другой кошелек или карту.