SyncViews Posted January 4, 2008 Share Posted January 4, 2008 How do I get it so that people download a file rather than viewing it when useing a certain link? eg. <a href="images/picture.png">Download:</a> Instead of the picture being downloaded the brower will just open it I looked to see if there was something like action="download" for the <a> element but it seems that there isn't Quote Link to comment Share on other sites More sharing options...
mike1313 Posted January 4, 2008 Share Posted January 4, 2008 That may go beyond a simple <a>. Quote Link to comment Share on other sites More sharing options...
Northern Flame Posted January 5, 2008 Share Posted January 5, 2008 you can do it with php <?php $saveName = stripslashes($_GET["name"]); $savePath = stripslashes($_GET["path"]); header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=$saveName"); header("Content-Transfer-Encoding: binary"); header("Content-length: " . filesize($savePath)); readfile($savePath); ?> then just put <a href="download.php?name=picture.png&path=images/picture.png">Download Picture</a> Quote Link to comment Share on other sites More sharing options...
SyncViews Posted January 5, 2008 Author Share Posted January 5, 2008 Oh I see...so I can't just link directly and have it download... Quote Link to comment Share on other sites More sharing options...
Northern Flame Posted January 9, 2008 Share Posted January 9, 2008 not that I know of.... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.