13 lines
257 B
PHP
13 lines
257 B
PHP
<?php
|
|
session_start();
|
|
echo("test");
|
|
$path = '/home/devinscription/public_html/membership/test';
|
|
if (!file_exists($path)) {
|
|
if (mkdir($path, 0777, true)) {
|
|
echo "Répertoire créé.";
|
|
} else {
|
|
echo "Erreur de création.";
|
|
}
|
|
}
|
|
?>
|