Tengo una tabla en un documento php y me gustaria poder ordenar un par de campos a elegir por el usuariod de forma ascendente o descendente (con flechitas) pero no lo consigo.
Alguien me puede echar un cable?. La tabla es la siguiente:
<table width="750" border="0" cellspacing="0" cellpadding="10">
<tr>
<td width="79""></td>
<td width="258">nombre</td>
<td width="30">do</td>
<td width="211">nombreEmpresa</td>
<td width="86">precio_botella</td>
</tr>
<?php do { ?>
<tr>
<td><img src="../img/<?php echo $row_rsProducto['foto']; ?>" alt="<?php echo $row_rsProducto['nombre']; ?>" width="35" height="110" title="<?php echo $row_rsProducto['nombre']; ?>"/></td>
<td><a href="vino1.php?idProducto=<?php echo $row_rsProducto['ref']; ?>&idEtiqueta=<?php echo $row_rsProducto['nombre']; ?>" class="ofertas"><u><?php echo $row_rsProducto['nombre']; ?></u></a></td>
<td class="do"><?php echo $row_rsProducto['do']; ?></td>
<td class="fabricant"><?php echo $row_rsProducto['nombreEmpresa']; ?></td>
<td class="precio"><?php echo $row_rsProducto['precio_botella']; ?>€/botella</td>
</tr>
<?php } while ($row_rsProducto = mysql_fetch_assoc($rsProducto)); ?>
</table>
<p class="siguiente"><a href="<?php printf("%s?pageNum_rsProducto=%d%s", $currentPage, 0, $queryString_rsProducto); ?>">Primero</a> - <a href="<?php printf("%s?pageNum_rsProducto=%d%s", $currentPage, max(0, $pageNum_rsProducto - 1), $queryString_rsProducto); ?>">Anterior</a> - <a href="<?php printf("%s?pageNum_rsProducto=%d%s", $currentPage, min($totalPages_rsProducto, $pageNum_rsProducto + 1), $queryString_rsProducto); ?>">Siguiente</a> - <a href="<?php printf("%s?pageNum_rsProducto=%d%s", $currentPage, $totalPages_rsProducto, $queryString_rsProducto); ?>">Último</a></p>