在大多数情况下,您将有两个页面。第一个页面,客户端,调用另一个页面,服务器端,并在等待时显示一个非常旋转的东西。当服务器端页面完成加载时(当您的查询完成时),您的第一个页面会收到响应,然后您可以隐藏漂亮的旋转内容,让您的用户知道它已经完成。
您可以使用 AJAX - 纯 Javascript 或更简单的 jQuery - 从 PHP 页面动态加载一些数据并在等待时显示旋转的东西。我在这里使用了 jQuery。
CSS
#loading_spinner { display:none; }
HTML
<img id="loading_spinner" src="loading-spinner.gif">
<div class="my_update_panel"></div>
jQuery
$('#loading_spinner').show();
var post_data = "my_variable="+my_variable;
$.ajax({
url: 'ajax/my_php_page.php',
type: 'POST',
data: post_data,
dataType: 'html',
success: function(data) {
$('.my_update_panel').html(data);
//Moved the hide event so it waits to run until the prior event completes
//It hide the spinner immediately, without waiting, until I moved it here
$('#loading_spinner').hide();
},
error: function() {
alert("Something went wrong!");
}
});
PHP (my_php_page.php)
<?php
// if this page was not called by AJAX, die
if (!$_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') die('Invalid request');
// get variable sent from client-side page
$my_variable = isset($_POST['my_variable']) ? strip_tags($_POST['my_variable']) :null;
//run some queries, printing some kind of result
$SQL = "SELECT * FROM myTable";
// echo results
?>