Balgas | Bonjour,
J'ai un tableau php écrit comme cela :
Code :
- <table width="695" border="0">
- <tr>
- <td width="100" style="color:#858585;"><?php $custom = $this->item->extra_fields; ?>
- <?
- $post = mb_substr($this->item->category->commune, 0, 15,'UTF-8');
- echo $post;
- echo '';
- ?>
- </td>
- <td width="115" style="color:#858585;"><a style="color:#858585;" href="<?php echo $this->item->category->link; ?>"><?
- $post = mb_substr($this->item->category->name, 0, 15,'UTF-8');
- echo $post;
- echo '...';
- ?></a></td>
- <td width="65"><span style="color:#858585;"><?php echo $custom[0]->value; ?>
- </td>
- <td width="190"><a href="<?php echo $this->item->link; ?>">
- <?
- $post = mb_substr($this->item->title, 0, 30,'UTF-8');
- echo $post;
- echo '...';
- ?>
- </a>
- </td>
- <td width="40" style="color:#858585;"><?php echo $custom[2]->value; ?></td>
- <td width="90" style="color:#858585;"><?php echo $custom[1]->value; ?></td>
- </tr>
- </table>
|
Je souhaiterai pouvoir trier mes colonnes en ordre croissant et décroissant.
Mon tableau fait appel à 2 tables différentes et il y a en tout 6 colonnes.
Étant débutant, je suis complètement perdu. Est ce quelqu'un de plus expérimenté pourrait m'aider ?
Merci ^^ |