At the first, my congratulations for the forum, its seems that is a lot of info here
Here is my question on $_GET['$ID'] im new on this
I have a few files (mp3) in my web site, that I want the users download them from download.php from id
there are few files in my web site mp3
for ejemple to download the file 93856.mp3 and 49673.mp3 depending on url id in download.php Im about what to put...i have something like this...
<?php
$id=$_GET['id_song'];
$ID = $_GET['id'];
switch ('ID') {
case 1:
$ann = '93856';
$atr = '.mp3';
case 2:
$ann = '49673';
$atr = '.mp3';
$id_song=
?>
or is something like this?
<?php
$id=$_GET['id_song'];
$id_song=93856
$id_song=49673
?>
to get download the files the url for this files is ejemple:
http://www.mywebsite.com/folder/downloa ... song=93856
http://www.mywebsite.com/folder/downloa ... song=49673
or this is wrong? cos' I've read some article on this...but its seems is wrong in all....
help me please...
hugs to all