CD parity information database test

This commit is contained in:
chudov
2010-02-18 21:12:44 +00:00
parent d1dac45a10
commit e7eeeeb9a2
20 changed files with 1646 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
$target_path = "parity/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
$source_path = $_FILES['uploadedfile']['tmp_name'];
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded";
} else{
echo $target_path, ":", $source_path;
echo "There was an error uploading the file, please try again!";
}
?>