phpbar.de logo

Mailinglisten-Archive

[php] array implode <th> als sortier link??

[php] array implode <th> als sortier link??

Peter Perlwitz php_(at)_phpcenter.de
Thu, 11 Jul 2002 15:48:48 +0100


Hallo Liste!

Aus einer mysql Abfrage habe ich ein array, welches ich mit implode
als tabelle ausgebe. ist es irgendwie möglich das man die überschrift
über eine spalte als link zum sortieren machen kann? habe leider
nichts derartiges gefunden, evtl hat jemand einen tipp für mich?

Danke im Voraus!
Hier der Code den ich jetzt nutze, es ist standard soweit mir bekannt
ist das so zu machen...
					echo "<table border=1><tr>";
					$row =
mysql_fetch_array($result, MYSQL_ASSOC);
					while ($field = key($row)) {
						echo '<th>' .
ucwords($field) . '</th>';
						next($row);
					}
					echo "</tr>";
					echo "<tr><td>";
					echo
implode("</td><td>",$row);
					echo "</td></tr>";
					while ($row =
mysql_fetch_array($result, MYSQL_ASSOC)) {
						echo "<tr><td>";
						echo
implode("</td><td>",$row);
						echo "</td></tr>\n";
					}
					echo "<P></table>";

Grüße
P.Perlwitz


php::bar PHP Wiki   -   Listenarchive