27-02-2011, 02:36 PM
(Modification du message : 27-02-2011, 02:52 PM par Sephi-Chan.)
C'est ça que tu veux ?
perso j'utiliserais une db !
<?php
$dm='scr';
$f='scr/'.stripslashes($_POST['u']);
$c=array();
if($_POST['u']!=''){
if (file_exists($f)){
if(file_get_contents($f)>$_POST['d']){
file_put_contents($f,$_POST['d']);
}
}else{
file_put_contents($f,$_POST['d']);
}
foreach(array_diff(scandir($dm),array('.','..')) as $f){
array_push($c,file_get_contents("{$dm}/{$f}").' '.$f);
}
$cache = fopen('monfichiertampon', 'w');
fputs($cache, '["'.implode('","', $c).'"]');
fclose($cache);
}
echo file_get_contents('monfichiertampon');
perso j'utiliserais une db !