T
tutsangucken
Guest
hi com
habe mal eine "Rangliste für mein game was ich mit mein team mache erstellt die sieht so aus":
sagen wir mal der Userheißt LOL dann würde man zu http:/hp.de/ranking.php?user=LOL weiterleitet wie kann ich das dann machen das dort weiter infos stehen also wie ich sie aus db kriege weiß ich nur wenn ich auf Link drücke steht dort ja nicht vorhanden....
Hoffe auf hilfe
LG
habe mal eine "Rangliste für mein game was ich mit mein team mache erstellt die sieht so aus":
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Rangliste</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
</head>
<body>
<center>
<?php
include("header.php")
?><table border="0">
<tr>
<th width="150"> <font color="red">Platz</th>
<th width="150"> <font color="red">Name</th>
<th width="150"> <font color="red">Level</th>
<th width="150"> <font color="red">Exp</th>
<th width="150"> <font color="red">Titel</th>
</tr>
</table>
</center>
<?php
$db = mysql_connect("zensiert", "zensiert", "zensiert");
if (!$db) {
echo "Fehler bei der Verbindung: " . mysql_connect_error();
exit();
}
mysql_select_db("zensiert") or exit ("Konnte Datenbank nicht auswählen");
$rank = "SELECT Name, Klasse, Level, EXP,Rangpunkte,Titel,Lizenz,VIT,STR,DEX,INTPOINTS,Tier FROM benutzer ORDER By Level DESC,EXP DESC";
$query = mysql_query($rank);
echo "<center><table border=\"0\">"; // Open table
$i = 0 + $get;
while($array = mysql_fetch_array($query)) {
$i = $i + 1;
echo "<center>
<tr>
<th width=\"150\"><font color=\"red\">" . $i . "</font></th>
<th width=\"150\"><a href=?user=". $array["Name"] . " font color=\"red\">" . $array["Name"] . "</font></th>
<th width=\"150\"><font color=\"red\">" . $array["Level"] . "</font></th>
<th width=\"150\"><font color=\"red\">" . $array["EXP"] . "</font></th>
<th width=\"150\"><font color=\"red\">" . $array["Titel"] . "</font></th>
</center>";
}
echo "</table></center><br>";
?>
</body>
</html>
<div class="contentBoxBottom"></div>
sagen wir mal der Userheißt LOL dann würde man zu http:/hp.de/ranking.php?user=LOL weiterleitet wie kann ich das dann machen das dort weiter infos stehen also wie ich sie aus db kriege weiß ich nur wenn ich auf Link drücke steht dort ja nicht vorhanden....
Hoffe auf hilfe
LG