Adblock breaks this site

Upload Images?

Discussion in 'Web Programming' started by ~Adam~, Mar 29, 2008.

Thread Status:
Not open for further replies.
  1. ~Adam~

    ~Adam~ Active Member
    Banned

    Joined:
    Mar 15, 2008
    Posts:
    213
    Referrals:
    0
    Sythe Gold:
    0
    Upload Images?

    Could someone help me make the .php files and the html file to make an image uploader.
    Basically, all I want is for it to upload the users image, and then give them the link. This is mostly for my own use, because it will be easier to store my files.

    I know basic html and xhtml - Not much difference i know
    Could someone help me? This would be really great.
     
  2. ling86

    ling86 Active Member
    Banned

    Joined:
    Mar 10, 2008
    Posts:
    121
    Referrals:
    0
    Sythe Gold:
    0
    Upload Images?

    http://www.w3schools.com/php/php_file_upload.asp

    HTML:
    <html>
    <body>
    
    <form action="upload_file.php" method="post"
    enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file" /> 
    <br />
    <input type="submit" name="submit" value="Submit" />
    </form>
    
    </body>
    </html>
    PHP:
    <?php
    if ((($_FILES["file"]["type"] == "image/gif")
    || (
    $_FILES["file"]["type"] == "image/jpeg")
    || (
    $_FILES["file"]["type"] == "image/pjpeg"))
    && (
    $_FILES["file"]["size"] < 20000))
      {
      if (
    $_FILES["file"]["error"] > 0)
        {
        echo 
    "Return Code: " $_FILES["file"]["error"] . "<br />";
        }
      else
        {
        echo 
    "Upload: " $_FILES["file"]["name"] . "<br />";
        echo 
    "Type: " $_FILES["file"]["type"] . "<br />";
        echo 
    "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
        echo 
    "Temp file: " $_FILES["file"]["tmp_name"] . "<br />";

        if (
    file_exists("upload/" $_FILES["file"]["name"]))
          {
          echo 
    $_FILES["file"]["name"] . " already exists. ";
          }
        else
          {
          
    move_uploaded_file($_FILES["file"]["tmp_name"],
          
    "upload/" $_FILES["file"]["name"]);
          echo 
    "Stored in: " "upload/" $_FILES["file"]["name"];
          }
        }
      }
    else
      {
      echo 
    "Invalid file";
      }
    ?>
     
  3. cp

    cp an cat
    Banned

    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0
    Upload Images?

    Doesn't look like he'll be replying any time soon...
     
< How to look at peoples Hidden Top Friends and comments in myspace! | Any DarkBasicpro, Pros On Sythe? >
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site