Upload Images?

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

Thread Status:
Not open for further replies.
Upload Images?
  1. Unread #1 - Mar 29, 2008 at 12:42 PM
  2. ~Adam~
    Joined:
    Mar 15, 2008
    Posts:
    213
    Referrals:
    0
    Sythe Gold:
    0

    ~Adam~ Active Member
    Banned

    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.
     
  3. Unread #2 - Apr 3, 2008 at 2:42 PM
  4. ling86
    Joined:
    Mar 10, 2008
    Posts:
    121
    Referrals:
    0
    Sythe Gold:
    0

    ling86 Active Member
    Banned

    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";
      }
    ?>
     
  5. Unread #3 - Apr 5, 2008 at 1:23 AM
  6. cp
    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0

    cp an cat
    Banned

    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? >

Users viewing this thread
1 guest
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site