Page 1 of 1

Preloader script for PHP page

Posted: Thu Aug 23, 2007 9:33 am
by akkad
Hi every body , i want a preloader script for my php page as it takes time untill it is loading , is there any PHP or javascript script ?

Posted: Thu Aug 23, 2007 9:33 am
by feyd
Can you clarify what you define as a "preloader script"?

Preloader script for PHP page

Posted: Thu Aug 23, 2007 9:46 am
by akkad
Ok, my page is calculating the traffic that the user have used on the network so it needs time to analyze the proxy logs.

so i want an preloader that will show to user the page is loading , is it clear now
NOTE: my page does not contain any images

Posted: Thu Aug 23, 2007 10:00 am
by superdezign

Code: Select all

<div id="loading">Loading...</div>
<!-- PHP script does it's work... -->
<style type="text/css">#loading { display: none; }</style>
Maybe? It's simple.
Only works if you output as you go, though.