File "create_fichier.php"

Full Path: /home/analogde/www/30_09_2024/create_fichier.php
File size: 295 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

	$blabla= $_POST['file_liste'];
	$identifiant_file = uniqid('xxxuser_', true);
	$handle = fopen($identifiant_file, "w") or die("Unable to open file!");
	
	for ($x = 0; $x < count($blabla); $x++) 
	{
		fwrite($handle, $blabla[$x] ."\n");
	}
	
	fclose($blabla);
	echo $identifiant_file;

?>