Posted by Jeff on 03/27/07 21:22
If the link that sends the user to the page with your PHP code on it
has the target as a new window (i.e <a href="download.php"
target="_blank">) then the new window will open and you will see the
dialog box in front of a empty window (i.e the white you are seeing).
If you make the link stay within the same browser window (i.e <a
href="download.php"> with no target) then it should just open the
dialog box with the current browser window in the background.
It is because you are not sending new HTML for the current browser
window so it has no information for updating so it stays the same.
I think that is what you were looking for but if not then please
clarify a little more.
Jeff
[Back to original message]
|