How can I ask PHP to process and display the outer layer of html first before 'loading' the content? For instance,
<html>
<body>
<p>Please wait, we are processing your request</p>
<?php include 'article.php';?>
</body>
</html>
I want to print this on the client browser first,
<html>
<body>
<p>Please wait, we are processing your request</p>
</body>
</html>
before showing whatever is included here,
<?php include 'article.php';?>
Is it possible?
You can do it with Jquery:
The
.load
command gets the contents from whatever URL you provide, and sticks it in the named DOM element (#article
).Read all about it: http://api.jquery.com/load/