Jump to content

Script200

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Everything posted by Script200

  1. So something in the likes off: echo $_FILES . ': ' . filesize($_FILES) . ' bytes'; And than how do I check for a max file size and include that?
  2. I need help modifying this script. I wanna add a "File Size" to it. So it will check file sized and set a maximum. Thanks. <?php //Windows way $uploadLocation = "C:\\www\\upload\\"; //Unix, Linux way //$uploadLocation = "\tmp"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html> <head> <title>X-NET File Uploader</title> <link href="style/style.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="main"> <div id="caption">UPLOAD FILE</div> <div id="icon"> </div> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="fileForm" id="fileForm" enctype="multipart/form-data"> File to upload:<center> <table> <tr><td><input name="upfile" type="file" size="36"></td></tr> <tr><td align="center"><br/><input class="text" type="submit" name="submitBtn" value="Upload"></td></tr> </table></center> </form> <?php if (isset($_POST['submitBtn'])){ ?> <div id="caption">RESULT</div> <div id="icon2"> </div> <div id="result"> <table width="100%"> <?php $target_path = $uploadLocation . basename( $_FILES['upfile']['name']); if(move_uploaded_file($_FILES['upfile']['tmp_name'], $target_path)) { echo "The file: ". basename( $_FILES['upfile']['name']). " has been uploaded!"; } else{ echo "There was an error uploading the file, please try again!"; } ?> </table> </div> <?php } ?> <div> </body>
  3. Ah ok, thanks. Do you have or know such a script and how I could implement it into my website?
  4. Hi, How can I show the content of a directory, which is used for file uploading, inside my html page? Basically so I don't have to add a link to the directory without a good way to get, other than clicking back of course. Usually it would go mysite.com/filedirectory/ and than it would show the content of that directory only I want it to show that inside my for example filedirectory.html page. How can I do that? Thanks.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.