Fruitgum
Erfahrenes Mitglied
Hallo,
ich habe eine Tabelle deren Inhalt ich gerne durch Drücken der Spaltenbezeichnung Sortieren kann.
Wie kann ich das machen ohne die PHP mehrmals anzulegen?
LG
ich habe eine Tabelle deren Inhalt ich gerne durch Drücken der Spaltenbezeichnung Sortieren kann.
PHP:
<div class="box2">
<?
$id=$_GET['id'];
$bildo=$_GET['datei'];
$sql2="SELECT * FROM $tbl_name WHERE id='$id'";
$result2=mysql_query($sql2);
$rows=mysql_fetch_array($result2);
?>
<table cellspacing="0">
<caption></caption>
<br>
<br>
<tr>
<th scope="col" class="name">Inhalt</th>
</tr>
<tr>
<td class="alt2"><a href=""><? { echo $rows['titel'];} ?></a><p align="left"><br>
<? echo $rows['eintrag']; ?>
<p><br>
</td>
</tr>
</table>
</div>
<div class="box3">
<table cellspacing="0">
<caption></caption>
<tr>
<th width="26%" class="name" scope="col">Datum</div></th>
<th width="31%" class="name" scope="col">Titel</th>
<th width="43%" class="name" scope="col">Ort</th>
</tr>
</table>
<?php
$sql="SELECT * FROM $tbl_name ORDER BY id DESC LIMIT 7";
$result=mysql_query($sql);
while($rows=mysql_fetch_array($result)){
?>
<table cellspacing="0">
<tr>
<td width="26%" class="alt2"><a href="konzerte_view.php?id=<? echo $rows['id']; ?>"><? echo $rows['email']; ?></a></td>
<td width="31%" align="right" class="alt"><? echo $rows['titel']; ?></td>
<td width="43%" align="right" class="alt"><? echo $rows['ort']; ?></td>
</tr>
</table>
<?php
}
mysql_close();
?>
Wie kann ich das machen ohne die PHP mehrmals anzulegen?
LG