Как отправить форму при загрузке страницы? Чтобы никто ничего не нажимал.
Этим подтягиваются данные:
$(function(){
$(document).on('submit', '[data-action="show"]', function (e) {
e.preventDefault();
$.ajax({
url: this.action,
type: this.method,
data: $( this ).serialize()
}).done(function (data) {
$(".info_student").html(data);
});
});
});
<form action="/index/show.php" method="post" data-action="show">
<input id="full_name" name="full_name" value="<?php echo $_POST['full_name'] ?>">
<input type="submit">
</form>