1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
|
<?php
include("config2.php");
?>
<html>
<head>
<title><?php echo $pagetitle; ?></title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body>
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th align="left" width="32%" bgcolor="#CCCCCC">Beschreibung</th>
<th align="left" width="16%" bgcolor="#CCCCCC">Größe</th>
<th align="left" width="12%" bgcolor="#CCCCCC">Hit's</th>
<th align="left" width="16%" bgcolor="#CCCCCC">Datum</th>
<th align="left" width="24%" bgcolor="#CCCCCC">Download</th>
</tr>
<?php
$id = $_GET['id'];
include("config.php");
$result = mysql_query("SELECT * FROM MP3 order by id desc LIMIT 10");
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'>
<tr>
<td width='32%'>";echo "$artist - $text1"; echo"</td>
<td width='16%'>";echo "$groesse"; echo"</td>
<td width='12%'>";echo "$hit"; echo"</td>
<td width='16%'>";echo "$date"; echo"</td>
<td width='24%'>";echo "<a href='$link1'>Download</a>"; echo"<td>
</tr>
</table>";
}
?>
<?php mysql_close(); ?>
</td>
</tr>
</table>
</body>
</html>
|