ich hab das adressbuch addon, und dafür ne contentpage
kann ich die daten die in der contentpage angezeigt werden auch alphabetisch ordnen lassen? wenn ja wäre das cool
hier mal der code:
<?php defined ('main') or die ('no direct access'); $abf = 'SELECT * FROM prefix_kunden'; $erg = db_query($abf); echo ' <table border="0" width="779" height="62" cellpadding="0" > <b><font size="4" align="center">Lieferanten Adressen </font></b> <p><b> <form action=""> <p>Geben Sie einen Suchbegriff ein: <input type="text" name="SuchNach"> <input type="button" value="suchen" onclick="find(this.form.SuchNach.value, false, false)"> </form> Drucken: <a href="javascript:window.print()"> <img src="/include/images/news_icons/kopierer.png" border="0"></a> Exel-Tabelle: PDF:</b></p> <tr> <td height="25" width="155" align="center" bgcolor="#333333"> <font color="#FFFFFF">Firma / Name</font></td> <td height="25" width="156" align="center" bgcolor="#333333"> <font color="#FFFFFF"> Email</font></td> <td height="25" width="156" align="center" bgcolor="#333333"> <font color="#FFFFFF">Telefon</font></td> <td height="25" width="156" align="center" bgcolor="#333333"> <font color="#FFFFFF">Kundennummer</font></td> <td height="25" width="156" align="center" bgcolor="#333333"> <font color="#FFFFFF">Mehr</font></td> </tr>'; //Tabellenbreite Beachten!!!! while($row = db_fetch_object($erg)) { echo '<tr> <td height="37" width="155" align="left" bgcolor="#B2B2B2">'.$row->name.'</td> <td height="37" width="156" align="center" bgcolor="#CDCDCD">'.$row->email.'</td> <td height="37" width="156" align="center" bgcolor="#B2B2B2">'.$row->telefon.'</td> <td height="37" width="156" align="center" bgcolor="#CDCDCD">'.$row->fnr.'</td> <td height="37" width="156" align="center" bgcolor="#B2B2B2"><div align="center"><a href="/?detailss-'.$row->id.'">Mehr</a></td> </tr>'; } echo '</table>';?>
verwendete ilchClan Version: 1.1