File "test11.php"
Full Path: /home/analogde/www/DCIM/Auto/CHESS_2022/test11.php
File size: 296 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
$tab_global = array_merge($_SESSION['repertoire'], $_SESSION['fichier']);
// supprimer . et ..
array_shift($tab_global);
array_shift($tab_global);
echo "<pre>";
print_r($tab_global);
//print_r($_SESSION['repertoire']);
//print_r($_SESSION['fichier']);
?>