Jump to content

LiamProductions

Members
  • Posts

    496
  • Joined

  • Last visited

    Never

Posts posted by LiamProductions

  1. This is the output now:

     

    File: healthbar.png
    Type: image/png
    Size: 270
    
    
    Warning:  move_uploaded_file(upload/healthbar.png) [function.move-uploaded-file]: failed to open stream: Permission denied in /home/liam/public_html/uploadfinish.php on line 17
    
    
    
    Warning:  move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpfOcFhM' to 'upload/healthbar.png' in /home/liam/public_html/uploadfinish.php on line 17
    
    Stored in: http://www.liam-monks.com/upload/healthbar.png

     

     

  2. Sure...

     

    upload.html:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    
    <head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <meta name="author" content="PHP Designer 2007">
    
    <title>Untitled 2</title>
    </head>
    
    <body>
    
    <form method="post" action="uploadfinish.php" enctype="multipart/form-data">
    File: <input type="file" name="file">
    <input type="submit" value="Upload!">
    </form>
    
    </body>
    </html>

     

    AND...

     

    uploadfinish.php

    <?php

    echo "<pre>";print_r($_FILES);

    if($_FILES['file']['size'] < 20000)

    {

    if($_FILES['file']['error'] > 0)

    {

    echo "We have found a error: " . $_FILES['file']['error'] . "<br />";

    }else{

    echo "File: " . $_FILES['file']['name'] . "<br />";

    echo "Type: " . $_FILES['file']['type'] . "<br />";

    echo "Size: " . $_FILES['file']['size'] . "<br />";

     

    if(file_exists("upload" . $_FILES['file']['name']))

    {

    echo "Sorry, " . $_FILES['file']['name'] . "already exists. ";

    }else{

    move_uploaded_file($_FILES['file']['tmp_name'], "upload/" . $_FILES['file']['name']);

    echo "Stored in: http://www.liam-monks.com/upload/" . $_FILES['file']['name'];

    }

    }

    }else{

    echo "Invalid File!";

    }

     

    ?>

     

    and the result of the page is:

     

    Array
    (
        [file] => Array
            (
                [name] => tgpamandabynes.jpg
                [type] => image/jpeg
                [tmp_name] => /tmp/phpr3RLIq
                [error] => 0
                [size] => 28375
            )
    
    )
    Invalid File!

  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    
    <head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <meta name="author" content="PHP Designer 2007">
    
    <title>Untitled 2</title>
    </head>
    
    <body>
    
    <form method="post" action="uploadfinish.php">
    File: <input type="file" name="file">
    <input type="submit" value="Upload!">
    
    </body>
    </html>

  4. Hey.

     

    I've made a simple upload script... and its not giving me any errors or uploading the file or even telling me the file name

     

    <?php
    
    if($_FILES['file']['size'] < 20000) {
    if($_FILES['file']['error'] > 0) {
    echo "We have found a error: " . $_FILES['file']['error'] . "<br />";
    }
    else {
    echo "File: " . $_FILES['file']['name'] . "<br />";
    echo "Type: " . $_FILES['file']['type'] . "<br />";
    echo "Size: " . $_FILES['file']['size'] . "<br />";
    
    if(file_exists("upload" . $_FILES['file']['name'])) {
    echo "Sorry, " . $_FILES['file']['name'] . "already exists. ";
    }
    else {
    move_uploaded_file($_FILES['file']['tmp_name'],
    "upload/" . $_FILES['file']['name']);
    echo "Stored in: http://www.liam-monks.com/upload/" . $_FILES['file']['name'];
    }
    }
    }
    else {
    echo "Invalid File!";
    }
    
    
    ?>

     

     

    I don't see the error anywhere and its providing no error:

     

    Full page result:

    File:

    Type:

    Size:

    Stored in: http://www.liam-monks.com/upload/

  5. Hey.

     

    I would like to introduce my self first of all, My name is Liam Monks and my skills of programming are below for you to look at... My services are available for custom projects at reasonable rates. You can contact me via Email and MSN which are at the bottom of this thread, Thanks Liam.

     

    My services to offer:

    • PHP
    • MySQL
    • Javascript
    • HTML

     

    Contact Details:

     

    Email: l.monkey2006@hotmail.com

    MSN: MSN@LiamProductions.com    <---- DO NOT EMAIL... Use to contact on MSN.

     

    I will only accept payments through PayPal

  6. Thanks for that.

     

    But i don't think web design is the way for me to go until im older and can afford PhotoShop  :-X

     

    And... This post was suppose to be a review on a book i got  :P

  7. as i said, it's just my opinion - go ahead and spend all your time learning PHP so that you can get a web development job when you're 20.  i'm not saying you won't get any life experience, all i'm saying is that you have to actually live to get the experience, not sit at a computer all the time.

     

    but you're right, we're being stupid.  we certainly haven't been in your shoes, so we don't really have any truly relevant advice to offer.

     

    Can i have your MSN, SO i can speak to you? If yes, PM it me

×
×
  • 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.