Server Question

Out of context: Reply #4

  • Started
  • Last post
  • 26 Responses
  • hubb7designs0

    // Where the file is going to be placed
    $target_path = "uploads/";

    /* Add the original filename to our target path.
    Result is "uploads/filename.extension" */
    $target_path = $target_path . basename( $_FILES['uploadedfile']['name...

    $target_path = "uploads/";

    $target_path = $target_path . basename( $_FILES['uploadedfile']['name...

    if(move_uploaded_file($_FILES['u... $target_path)) {
    echo "The file ". basename( $_FILES['uploadedfile']['name...
    " has been uploaded";
    } else{
    echo "There was an error uploading the file, please try again!";
    }

View thread