List of session content"); foreach($_SESSION as $key => $value) { echo("$key: $value
"); } echo("

List of uploaded files

"); $files = $_SESSION['juvar.files']; echo ('Nb uploaded files is: ' . sizeof($files)); echo(''); foreach ($files as $f) { echo(''); echo("\n"); } echo("
Filenamefile sizeRelative pathFull namemd5sumSpecific parameters
'); echo($f['name']); echo(''); echo($f['size']); echo(''); echo($f['relativePath']); echo(''); echo($f['fullName']); echo(''); echo($f['md5sum']); $addBR = false; foreach ($f as $key=>$value) { //If it's a specific key, let's display it: if ($key != 'name' && $key != 'size' && $key != 'relativePath' && $key != 'fullName' && $key != 'md5sum') { if ($addBR) { echo('
'); } else { // First line. We must add a new 'official' list separator. echo('
'); $addBR = true; } echo("$key => $value"); } } echo('
\n"); ?>

Go back to the upload page