2016-04-27 11:11:23 +02:00
|
|
|
<?php
|
|
|
|
if(isset($_SERVER['REMOTE_ADDR'])) exit;
|
|
|
|
$_SERVER['SERVER_PORT'] = 80;
|
|
|
|
$_SERVER['HTTP_HOST'] = 'www.bebeboutik.com';
|
|
|
|
|
|
|
|
include(dirname(__FILE__).'/../../config/config.inc.php');
|
|
|
|
|
|
|
|
foreach(glob(dirname(__FILE__).'/*.csv') as $filename) {
|
2017-06-19 17:04:16 +02:00
|
|
|
if($filename == 'base_produit.csv'){
|
|
|
|
continue;
|
|
|
|
}
|
2016-04-27 11:11:23 +02:00
|
|
|
unlink($filename);
|
|
|
|
}
|