File "upload_files03.php"

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

<?php

	if(!empty($_FILES['files']['name']))
	{  

		$handle = fopen("debug.txt", "w") or die("Unable to open file!");
		
		foreach($_FILES['files']['name'] as $key=>$val)
		{ 
			$fileName = basename($_FILES['files']['name'][$key]);  
			fwrite($handle, $fileName ."\n");
	}	

	fclose($handle);


	

	

?>