hi
I was wondering if is possible to display a loading bar or a simple message between diferent pages requests from my aplications
So the user get the feeling that he is not waiting for a requested page to load, because he knows is it loading by reading the message or seeing a loading bar just like the progress status bar in the browser
php do this? or javascript?
something like :
if(!$targetpage){
header("Location: waitingpage.php");
} else {
header("Location: $targetpage");
}
Cheers