How to process and display the outer layer of html first before 'loading' the content?

269 Views Asked by At

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?

1

There are 1 best solutions below

0
On

You can do it with Jquery:

<html>
<body>
<div id='article'>
   <p>Please wait, we are processing your request</p>
</div>
<script>
   $("#article").load("article.php");
</script>
</body>
</html>

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/