Hi all,
I wrote a PHP script that displays a huge table with data from a database that is updated contantly, and on each row it drops an HTML anchor. The anchor's purpose is so that when you are redirected from one of the other pages, you will automatically jump to the correct row.
Problem: The anchor is not shown on the top of the page because when the browser "jumps" to its position, the page hasn't finished loading, therefore the anchor might end up in the middle of the page.
Does anyone know a PHP function, HTML, javascript or anything that will make the browser show the page only after it has finished loading?
It has to be compatible with this instruction, which is also at the top of every page:
header("Cache-Control: no-store, no-cache, must-revalidate");
Thanks!