I have a php script that checks MySQL for a file name and obviously the file path which outputs the result on the final download page for the user.
To output the result I use an IFrames
<iframe name="link" src="dl_click1.php?urlid=<?=$_GET['urlid']?>" width="100%" height="30px" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe>
Is there a way to do the same but without using an IFrame?
any help will be very much appreciated.