Bonjour les Amis,
ma question est simple mais Google me répond à coté
Je veux simplement parcourir le contenu d'une clé USB
disons par exemple :
LA SEULE CHOSE QUI M'INT2RESSE EST COMMENT ON ECRIT
: $data = glob("h:\fichier_ori/*");
Merci
ma question est simple mais Google me répond à coté
Je veux simplement parcourir le contenu d'une clé USB
disons par exemple :
<?php
header('Content-type: text/html; charset=UTF-8');
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<?PHP
ini_set ('max_execution_time', 0);
$data = glob("h:\fichier_ori/*");
$z=count($data);
$LesFichiers = array();
$i=0;
$y=0;
foreach( $data as $filename)
{
/* ============= */
/* ETC.................... */
}
LA SEULE CHOSE QUI M'INT2RESSE EST COMMENT ON ECRIT
: $data = glob("h:\fichier_ori/*");
Merci