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:
|
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<Coded by Gbla>
<title>blub</title>
<link rel=stylesheet href=../style.css type=text/css>
<base target="home">
</head>
<body>
<?php
include("header.php");
include("db.php");
include("functions.inc.php");
$proseite = 30; // Wieviele Einträge pro Seite
if(isset($_REQUEST["seite"])) { // Wenn Seite angegeben is dann..
$seite = zahl($_REQUEST["seite"]);
} else { // ansonsten
$seite = 0;
}
?>
<?php
$abfrage = "SELECT id, name FROM mitglieder ORDER BY id LIMIT ".$seite.",".$proseite; // Datenabfrage
$ergebnis = mysql_query($abfrage);
$i=0;
while($row = mysql_fetch_object($ergebnis)){
if($i%3 == 0 && $i != 0){
echo "</tr><tr>";
}$i++;
echo "<center><table class='table3' width='511' height='81'>
<tr>
<td class='table2' width='169' height='17'><a href=spinte_verzeichnis.php?user=$row->id><img border='0' src='../Style/Spinte/$row->name.jpg'></td>
<td class='table2' width='169' height='17'><a href=spinte_verzeichnis.php?user=$row->id><img border='0' src='../Style/Spinte/$row->name.jpg'></td>
<td class='table2' width='169' height='17'><a href=spinte_verzeichnis.php?user=row->id><img border='0' src='../Style/Spinte/$row->name.jpg'></td>
</tr>
</table>
</center>";
}
?>
</body>
</html> |