Andrew R Posted June 24, 2006 Share Posted June 24, 2006 HelloI am creating a simple download system that will pull a link from the database and open it up. The problem is I don’t seem to be able to open the link of the file up when I click index.php?view=download&DLID=1. Any advice on how to open up a link in a database?<?include 'db.php';$query_downloads = "SELECT file FROM downloads where DLID = '$DLID'";$downloads = mysql_query($query_downloads) or die(mysql_error());$row_downloads = mysql_fetch_assoc($downloads);?> Link to comment https://forums.phpfreaks.com/topic/12799-download-system/ Share on other sites More sharing options...
AndyB Posted June 24, 2006 Share Posted June 24, 2006 "Open up a link in a database" - doesn't make sense to me.My guess is that what you want is to abstract a URL from yoiur database and display a clickable link for the visitor. Then again, maybe you want to force a download dialog box to open. Tell us what you mean and that'll help. Link to comment https://forums.phpfreaks.com/topic/12799-download-system/#findComment-49044 Share on other sites More sharing options...
Andrew R Posted June 24, 2006 Author Share Posted June 24, 2006 [!--quoteo(post=387426:date=Jun 24 2006, 01:25 PM:name=AndyB)--][div class=\'quotetop\']QUOTE(AndyB @ Jun 24 2006, 01:25 PM) [snapback]387426[/snapback][/div][div class=\'quotemain\'][!--quotec--]"Open up a link in a database" - doesn't make sense to me.My guess is that what you want is to abstract a URL from yoiur database and display a clickable link for the visitor. Then again, maybe you want to force a download dialog box to open. Tell us what you mean and that'll help.[/quote]Yes in the database I have a link to the file (below), when index.php?view=download&DLID=1 is clicked I want the that URL to open and force a download dialog box.[a href=\"http://imageshack.us\" target=\"_blank\"][img src=\"http://img93.imageshack.us/img93/238/12hk2.jpg\" border=\"0\" alt=\"IPB Image\" /][/a]CheersAndrew Link to comment https://forums.phpfreaks.com/topic/12799-download-system/#findComment-49047 Share on other sites More sharing options...
AndyB Posted June 24, 2006 Share Posted June 24, 2006 [a href=\"http://www.phpfreaks.com/forums/index.php?showtopic=95433\" target=\"_blank\"]http://www.phpfreaks.com/forums/index.php?showtopic=95433[/a]That should help Link to comment https://forums.phpfreaks.com/topic/12799-download-system/#findComment-49048 Share on other sites More sharing options...
Andrew R Posted June 24, 2006 Author Share Posted June 24, 2006 Thanks Link to comment https://forums.phpfreaks.com/topic/12799-download-system/#findComment-49051 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.