<?php
include("../top.php");
include("../mysql.php");
$query = mysql_query("SELECT * FROM _klubber WHERE id=".$_GET['id']."");
while ($r = mysql_fetch_array($query)) {
// det man nu vil gøre for hver besked!
?>
<table valign="top" width="60%" style="border-left: 1px solid black; border-right: 1px solid black; border-top: 1px solid black; border-bottom: 1px dashed black" bgcolor="B4EFC3" border="0" cellpadding="5" cellspacing="0" align="center" class="txt">
<tr>
<td align="left"><h3><? echo $r[navn];?></h3></td><br>
</tr>
<tr>
<td align="left">Hele navn: <? echo $r[nick];?></td>
</tr>
<tr>
<td align="left">Nation: <? echo $r[land];?></td>
</tr>
<tr>
<td align="left">By: <? echo $r[city];?></td>
</tr>
<tr>
<td align="left">Grundlagt: <? echo $r[grunlagt];?></td>
</tr>
<tr>
<td align="left">Stadion: <? echo $r[stadion];?>, <? echo $r[kap];?></td>
</tr>
<tr>
<td align="left">Website: <a href="http://<? echo $r[website];?>" target=_blank><? echo $r[website];?></a></td>
</tr>
<tr>
<td align="left">
Titler:<br> <?php echo nl2br($r[titler]); ?>
</td>
</tr>
</table>
<?
}
?>
<?php
$sql = mysql_query("SELECT *, * FROM _klubber, _profiler WHERE _profiler.klub = _klubber.navn ORDER BY _profiler.troje ASC");
$result = mysql_query("$sql")or die(mysql_error());
for ($i=1; $r = mysql_fetch_object($result); $i++){
echo"
<table width=75% align=center class=txt style=\\"border-left: 1px solid #000000; border-top: 1px solid #000000; border-right: 1px solid #000000;\\" cellspacing=0 cellpadding=2>
<tr>
<td align=left class=txt width=8%>$r->troje.</td>
<td align=left class=txt width=32%><b><a href=http://www.footballworld.dk/profiler/sp_profiler.php?id=$r->vis_sp>$r->navn</b></td>
<td align=left class=txt width=20%><a href=http://www.footballworld.dk/profiler/kl_profiler.php?id=$r->klub_vis>$r->klub</td>
<td align=left class=txt width=20%>$r->land</td>
</tr>
</table>
";
}
?>
<table class=txt align="center" width="75%" align="80%" valign="top" style="border-left: 1px solid black; border-right: 1px solid black; border-bottom: 1px solid black" bgcolor="B4EFC3">
<tr>
<td align="center">
<a href="http://www.footballworld.dk/profiler/kl_soeg.php">Gå til søgefunktionen</a>
</td>
</tr>
</table>
<?php include("../bund.php"); ?>
Sådan her ser min kode ud nu, lidt anderledes end før, men jeg tror det her er mere simpelt.
Jeg har to tabeller: _klubber og _profiler
Jeg vil havde den til at vise troje, navn, klub og land fra _profiler når _profiler.klub og _klubber.navn er ens..
Det er kun den nederste query der ikke funker, den øverste virker fint..