I have big database
s that contain large no of tables and have PHP/HTML
file with java script
and css
in separate folders.Now I want is to make my page load faster when user navigates through our page then the content on database, its css
and PHP/HTML
file that run parallel. It means there is no blockage of any stream of file or one by one each file is opening which take lots of time. Each work separates and assigns at one place to make page what is it mean for? So how can we achieve if it is there is any code that allows all file work in parallel including database?
Open pages its css and database parallel
85 Views Asked by John At
1
You can place all your
<script>
tags at the bottom of your<body>
tag. According to Yahoo's Best Practices for Speeding Up Your Web Site.You cannot do the same for for your stylesheets. Not only is it not W3C-complaint, but it actually won't help.
On a side-note, if it's taking that much time to load your pages, also look into your PHP and SQL queries. Try to optimize those as well.