Need Downloading help pls

Hello,

I have a php page from where anyone can download mp3 songs. my database table contain song title and the directory link of every song. the page retrieve song title with the link that people can click and download. but if u click the mp3 started to play on new window. if u right click and save as then it download. but I want that people click and it will start download or give a prompt to save the file in pc. I hv the following code please help me… thankx


                <?PHP
                $artist=$_GET['artist'];
                $album=$_GET['album'];

                $query=("select *from Band where artist='$artist' and album='$album'");
                $result=mysql_query($query);
                while ($row=mysql_fetch_array($result))
                      { 
                ?>
                          <a href="<?php echo $row["link"];?>"><strong><?php echo $row["title"];?></strong></a>
                <?PHP
                      }
                  ?>


How can I make that if I click on the title then it will start download. pls need help.

First, you need to escape the user input against injection.