Jump to content

[SOLVED] download softwares


saad|_d3vil

Recommended Posts

hi some one can help me out how to make php page like this page http://www.funmaza.com/softwares.html my php code is

<?php
$con = mysql_connect("localhost","apnimusk","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("apnimusk_naat", $con);

// check to see if id is set
if(isset($_GET['id']) && is_numeric($_GET['id']))
{
   echo 'Your have requested ID #'.$GET['id'].'<br />';
   echo '<a href="sadasdas.php">Back</a>';
}
// no id requested, display results
else
{
   $result = mysql_query("SELECT * FROM album");

   while($row = mysql_fetch_assoc($result))
   {
       echo '<a href="?id='.$row['id'].'">'.$row['age'].'</a> - ' . $row['name'] . " - " . $row['age'] . '<br />';
   }
}

mysql_close($con);
?>

now i want that if some click on my link so the link show in id but it download software

 

Thank you in advance

Link to comment
https://forums.phpfreaks.com/topic/121540-solved-download-softwares/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.