voici ce que contien le fichier que tu me demande:
[php]<?php
$fields_categorie = array (
0 => 'cat_id',
1 => 'cat_nom',
);
$categorie = array (
0 =>
array (
'cat_id' => 1,
'cat_nom' => '[ Zone Public ]',
),
1 =>
array (
'cat_id' => 2,
'cat_nom' => '[ Zone Membre ]',
),
2 =>
array (
'cat_id' => 3,
'cat_nom' => '[ Zone VIP ]',
),
3 =>
array (
'cat_id' => 4,
'cat_nom' => '[ Divers ]',
),
);
$compte_categorie = count($categorie);
?>
[/php]