1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
|
<?php
$id = $_GET['id'];
include("config.php");
$result = mysql_query("SELECT * FROM mp3");
while($r=mysql_fetch_array($result))
{
$date=$r["date"];
$artist=$r["artist"];
$cat=$r["cat"];
$id=$r["id"];
$text1=$r["text1"];
$link1=$r["link1"];
echo "<table width='98%' border='0' cellspacing='0' cellpadding='0' align='center' class='stil1'>
<tr>
<td>";echo "$artist - $text1"; echo"</td>
<td width='50'>";echo "$date"; echo"</td>
<td width='70'>";echo "<a href='$link1'>Download</a>"; echo"<td>
</tr>
</table>";
}
?>
<?php mysql_close(); ?> |