Preloader script for PHP page
Moderator: General Moderators
Preloader script for PHP page
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 ?
Preloader script for PHP page
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
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
- superdezign
- DevNet Master
- Posts: 4135
- Joined: Sat Jan 20, 2007 11:06 pm
Code: Select all
<div id="loading">Loading...</div>
<!-- PHP script does it's work... -->
<style type="text/css">#loading { display: none; }</style>Only works if you output as you go, though.