Avatar billede humlebien Novice
14. juni 2000 - 11:56 Der er 7 kommentarer og
1 løsning

Upload filer med PHP

Er det muligt at uploade dokumenter med PHP??

Hvordan ??
Avatar billede andreas Nybegynder
14. juni 2000 - 12:35 #1
<HTML>
<HEAD>
<TITLE>Upload</TITLE>
</HEAD>
<BODY>
<?
if(isset($UploadedFile))
{
$desti.=$UploadedFile_name;
copy($UploadedFile,$desti);
unlink($UploadedFile);
print("Local File: $UploadedFile <BR>\n");
print("Name: $UploadedFile_name <BR>\n");
print("Size: $UploadedFile_size <BR>\n");
print("Type: $UploadedFile_type <BR>\n");
print("Saved as: $desti <BR>\n");
print("<HR>\n");
}
?>
<FORM ENCTYPE="multipart/form-data" ACTION="upload.php3" METHOD="post">
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="102400">
<INPUT NAME="UploadedFile" TYPE="file">
<INPUT TYPE="submit" VALUE="Upload">
</FORM>

</BODY>
</HTML>
Avatar billede humlebien Novice
14. juni 2000 - 12:44 #2
Jeg kigger på det i aften......
Avatar billede ramlev Nybegynder
14. juni 2000 - 13:51 #3
linien :
<form enctype......

ville jeg lave om til :

<FORM ENCTYPE="multipart/form-data" ACTION="<? echo basename($PHP_SELF); ?>" METHOD="POST">

så kan du nemlig kalde siden lige præsis hvad du synes....
Avatar billede fico Nybegynder
14. juni 2000 - 17:27 #4
Man kan bare kalde det <FORM ENCTYPE="multipart/form-data" ACTION="<? echo $PHP_SELF; ?>" METHOD="POST">
Uden basename
Avatar billede mtilsted Nybegynder
14. juni 2000 - 18:26 #5
Og husk lige at filer bliver sletted, hvis de ikke er flytted/renamed naar scripted stopper.

Avatar billede hage Nybegynder
14. juni 2000 - 21:14 #6
Du kan også bare benytte denne *FEDE* class- jeg har fundet et-eller-andet sted jeg ikke kan huske. Den modtager JPG,GIF,PNG,TXT/HTML - dokumenter, og kan sættes op til f.eks. udelukkende at kunne modtage GIF-filer. Den har en række gode funktioner du kan læse dig til i readme.filen.

Jeg har ikke en zip.fil så sourcen til de forskellige filer kommer her (pas på...)

**********
SELVE CLASS FILEN - GEMMES SOM "fileupload.class"
**********
<?
/*
Error codes:
    0 - "No file was uploaded"
    1 - "Maximum file size exceeded"
    2 - "Maximum image size exceeded"
    3 - "Only specified file type may be uploaded"
    4 - "File already exists" (save only)
*/

class uploader {

    var $file;
    var $errors;
    var $accepted;
    var $new_file;
    var $max_filesize;
    var $max_image_width;
    var $max_image_height;

    function max_filesize($size){
        $this->max_filesize = $size;
    }

    function max_image_size($width, $height){
        $this->max_image_width = $width;
        $this->max_image_height = $height;
    }

    function upload($filename, $accept_type, $extention) {
        // get all the properties of the file
        $index = array("file", "name", "size", "type");
        for($i = 0; $i < 4; $i++) {
            $file_var = '$' . $filename . (($index[$i] != "file") ? "_" . $index[$i] : "");
            eval('global ' . $file_var . ';');
            eval('$this->file[$index[$i]] = ' . $file_var . ';');
        }
   
        if($this->file["file"] && $this->file["file"] != "none") {
            //test max size
            if($this->max_filesize && $this->file["size"] > $this->max_filesize) {
                $this->errors[1] = "Maximum file size exceeded. File may be no larger than " . $this->max_filesize/1000 . "KB.";
                return False;
            }
            if(ereg("image", $this->file["type"])) {
                $image = getimagesize($this->file["file"]);
                $this->file["width"] = $image[0];
                $this->file["height"] = $image[1];
           
                // test max image size
                if(($this->max_image_width || $this->max_image_height) && (($this->file["width"] > $this->max_image_width) || ($this->file["height"] > $this->max_image_height))) {
                    $this->errors[2] = "Maximum image size exceeded. Image may be no more than " . $this->max_image_width . " x " . $this->max_image_height . " pixels";
                    return False;
                }   
                switch($image[2]) {
                    case 1:
                        $this->file["extention"] = ".gif";
                        break;
                    case 2:
                        $this->file["extention"] = ".jpg";
                        break;
                    case 3:
                        $this->file["extention"] = ".png";
                        break;
                    default:
                        $this->file["extention"] = $extention;
                        break;
                }
            }
            else if(!ereg("(\.)([a-z0-9]{3,5})$", $this->file["name"]) && !$extention) {
                // add new mime types here
                switch($this->file["type"]) {
                    case "text/plain":
                        $this->file["extention"] = ".txt";
                        break;
                    default:
                        break;
                }           
            }
            else {
                $this->file["extention"] = $extention;
            }
       
            // check to see if the file is of type specified
            if($accept_type) {
                if(ereg($accept_type, $this->file["type"])) { $this->accepted = True; }
                else { $this->errors[3] = "Only " . ereg_replace("\|", " or ", $accept_type) . " files may be uploaded"; }
            }
            else { $this->accepted = True; }
        }
        else { $this->errors[0] = "No file was uploaded"; }
        return $this->accepted;
    }

    function save_file($path, $mode){
        global $NEW_NAME;
       
        if($this->accepted) {
            // very strict naming of file.. only lowercase letters, numbers and underscores
            $new_name = ereg_replace("[^a-z0-9._]", "", ereg_replace(" ", "_", ereg_replace("%20", "_", strtolower($this->file["name"]))));

            // check for extention and remove
            if(ereg("(\.)([a-z0-9]{3,5})$", $new_name)) {
                $pos = strrpos($new_name, ".");
                if(!$this->file["extention"]) { $this->file["extention"] = substr($new_name, $pos, strlen($new_name)); }
                $new_name = substr($new_name, 0, $pos);
               
            }
            $this->new_file = $path . $new_name . $this->file["extention"];
            $NEW_NAME = $new_name . $this->file["extention"];
           
            switch($mode) {
                case 1: // overwrite mode
                    $aok = copy($this->file["file"], $this->new_file);
                    break;
                case 2: // create new with incremental extention
                    while(file_exists($path . $new_name . $copy . $this->file["extention"])) {
                        $copy = "_copy" . $n;
                        $n++;
                    }
                    $this->new_file = $path . $new_name . $copy . $this->file["extention"];
                    $aok = copy($this->file["file"], $this->new_file);
                    break;
                case 3: // do nothing if exists, highest protection
                    if(file_exists($this->new_file)){
                        $this->errors[4] = "File &quot" . $this->new_file . "&quot already exists";
                    }
                    else {
                        $aok = rename($this->file["file"], $this->new_file);
                    }
                    break;
                default:
                    break;
            }
            if(!$aok) { unset($this->new_file); }
            return $aok;
        }
    }
}
?>
**********
EKSEMPEL FIL - GEMMES SOM "upload.php3"
**********
<html>
    <head>
        <title>Upload</title>
    </head>
<body>

<?
require("fileupload.class");

#--------------------------------#
# Variables
#--------------------------------#

// The path to the directory where you want the
// uploaded files to be saved. This MUST end with a
// trailing slash unless you use $PATH = ""; to
// upload to the current directory. Whatever directory
// you choose, please chmod 777 that directory.

    $PATH = "uploads/";

// The name of the file field in your form.

    $FILENAME = "userfile";

// ACCEPT mode - if you only want to accept
// a certain type of file.
// possible file types that PHP recognizes includes:
//
// OPTIONS INCLUDE:
//  text/plain
//  image/gif
//  image/jpeg
//  image/png
   
    $ACCEPT = new array();
    $ACCEPT[0] = "image/jpeg";
    $ACCEPT[1] = "image/gif";
    $ACCEPT[2] = "image/png";

// If no extension is supplied, and the browser or PHP
// can not figure out what type of file it is, you can
// add a default extension - like ".jpg" or ".txt"

    $EXTENSION = "";

// SAVE_MODE: if your are attempting to upload
// a file with the same name as another file in the
// $PATH directory
//
// OPTIONS:
//  1 = overwrite mode
//  2 = create new with incremental extention
//  3= do nothing if exists, highest protection

    $SAVE_MODE = 1;


#--------------------------------#
# PHP
#--------------------------------#

function print_file($file, $type, $mode) {
    if($file) {
        if(ereg("image", $type)) {
            echo "<img src=\"" . $file . "\" border=\"0\" alt=\"\">";
        }
        else {
            $userfile = fopen($file, "r");
            while(!feof($userfile)) {
                $line = fgets($userfile, 255);
                switch($mode){
                    case 1:
                        echo $line;
                        break;
                    case 2:
                        echo nl2br(ereg_replace("\t", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", htmlentities($line)));
                        break;
                }   
            }
        }
    }
}

$upload = new uploader;
$upload->max_filesize(30000);

if($upload->upload("$FILENAME", "$ACCEPT", "$EXTENSION")) {
    while(list($key, $var) = each($upload->file)){
        echo $key . " = " . $var . "<br>";
    }
    if($upload->save_file("$PATH", $SAVE_MODE)) {
        print("<p>Saved as: " . $upload->new_file . "<p>");
        print_file($upload->new_file, $upload->file["type"], 2);
    }
}

if($upload->errors) {
    while(list($key, $var) = each($upload->errors)){
        echo "<p>" . $var . "<br>";
    }
}

if ($NEW_NAME) {
    print("<p>Name of image save: <b>$NEW_NAME</b></p>");
}

#--------------------------------#
# HTML FORM
#--------------------------------#
?>

    <form enctype="multipart/form-data" action="<?echo basename($PHP_SELF);?>" method="get">
        <input type="hidden" name="MAX_FILE_SIZE" value="100000">Send this file:
        <input name="userfile" type="file">
        <input type="submit" value="Send File">
    </form>
    <hr noshade size="1">
<?
    if ($ACCEPT) {
        print("This form only accepts <b>" . $ACCEPT . "</b> files\n");
    }
?>

</body>
</html>
**********
README FILEN - GEMMES SOM whatever_you_like ;)
**********
#--------------------------------#
# ABOUT
#--------------------------------#

fileupload.class can be used to upload image and text files with a web
browser. The uploaded file's name will get cleaned up - special characters
will be deleted, and spaces get replaced with underscores, and moved to
a specified directory (on your server). fileupload.class also does its
best to determine the file's type (text, GIF, JPEG, etc). If the user
has named the file with the correct extension (.txt, .gif, etc), then
the class will use that, but if the user tries to upload an ex tensionless
file, PHP does can identify text, gif, jpeg, and png files for you. As
a last resort, if there is no specified extension, and PHP can not
determine the type, you can set a default extension to be added.

#--------------------------------#
# REQUIREMENTS
#--------------------------------#

To run and have fun with fileupload.class you will need access to a
Unix/Linux/*nix web server running Apache with the PHP module, a web
browser that supports uploading (like Netscape), and the 2 other files
that came with this.

#--------------------------------#
# QUICK SETUP
#--------------------------------#

1) Make a new directory within your with you web directory called "fileupload"
2) Upload the files "fileupload.class" and "upload.php" (depending on
how you've got Apache configured, you may need to rename this "upload.php3")
3) Make another directory within the "fileupload" directory called "uploads"
and give it enough upload permissions for you web server to upload to it.
(usually, this means making it world writable)
- cd /your/web/dir/fileupload
- mkdir uploads
- chmod 777 uploads
4) Fire up Netscape of IE and hit test it out:
  http://www.yourdomain.com/fileupload

#--------------------------------#
# DETAILED INSTRUCTIONS
#--------------------------------#

You should have downloaded 3 files:
- README.txt (this file)
- fileupload.class
- upload.php

fileupload.class:
    This is the file that does all the work. You shouldn't have to
    change anything in this file, unless you're getting lots of errors.
    Lines 114 and 122 can be changed from $aok = copy(...); to
    $aok = rename(...);

upload.php
    Here's where all the variables reside (see below for an explaination of
    each). NOTE you may need to rename this file upload.php3, depending
    on how you've got Apache configured.

VARIABLES in "upload.php":

// The path to the directory where you want the
// uploaded files to be saved. This MUST end with a
// trailing slash unless you use $PATH = ""; to
// upload to the current directory. Whatever directory
// you choose, please chmod 777 that directory.

    $PATH = "uploads/";

// The name of the file field in your form.

    $FILENAME = "userfile";

// ACCEPT mode - if you only want to accept
// a certain type of file.
// possible file types that PHP recognizes includes:
//
// OPTIONS INCLUDE:
//  text/plain
//  image/gif
//  image/jpeg
//  image/png

    $ACCEPT = "image/gif";

// If no extension is supplied, and the browser or PHP
// can not figure out what type of file it is, you can
// add a default extension - like ".jpg" or ".txt"

    $EXTENSION = "";

// SAVE_MODE: if your are attempting to upload
// a file with the same name as another file in the
// $PATH directory
//
// OPTIONS:
//  1 = overwrite mode
//  2 = create new with incremental extention
//  3= do nothing if exists, highest protection

    $SAVE_MODE = 1;

#--------------------------------#
# LICENSE
#--------------------------------#

/*
///// fileupload.class /////
Copyright (c) 1999 David Fox, Angryrobot Productions
(http://www.angryrobot.com) All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of author nor the names of its contributors may be used
to endorse or promote products derived from this software without specific
prior written permission.

DISCLAIMER:
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
***********************

Håber det blev nogenlunde klart på trods af koderne...
Avatar billede streak Nybegynder
22. juni 2000 - 07:55 #7
Dette lille script, kan uploade hvad som helst til det dir som du skriver i DESTINATION1 eller DESTINATION2 . Man meget nemt tilføje ekstra indtastnings bokse ved at øge antallet i "define("UPLOAD_NO", 6);"
Jeg bruger den selv på tons vis af sider.

============== CUT HERE ======================
<?php
/* Destination of Upload files..use / insted of \\ in UNIX */
define("DESTINATION1", "/www-data/nkd/FCommerce/dk/img/");
define("DESTINATION2", "/www-data/nkd/FCommerce/eng/img/");

/* Number of Upload files */
define("UPLOAD_NO", 6);


if($REQUEST_METHOD!="POST")
{
print "<form enctype=\"multipart/form-data\" method=post>\n";
print "<INPUT TYPE=\"hidden\" name=\"MAX_FILE_SIZE\"
value=\"3000000\">\n";
print "Billede Upload System 1.0<br><br><br>";
for($i=1; $i<=UPLOAD_NO; $i++)
{
print "Billede $i&nbsp;&nbsp;&nbsp;&nbsp;";
echo "<input type=file name=infile$i>&nbsp;&nbsp;&nbsp;&nbsp;";

if($i%2==0)
print"<br>";
}
echo "<br><br><input type=submit value=upload></form>\n";
}
else
{
/* handle uploads */
$noinput = true;
for($i=1; $noinput && ($i<=UPLOAD_NO); $i++)
{
if(${"infile".$i}!="none") $noinput=false;
}
if($noinput)
{
print "<big><B>Error uploading. Try again.</B></big>";
exit();
}
echo("<p align='center'><b><font size='4'>Successfully
Uploaded<br>");

echo("<table border='1' width='84%' height='52'
bordercolorlight='#008080' bordercolordark='#008080'>
<tr>
<td width='14%' bgcolor='#008000' height='21'><font
color='#FFFFFF'><b>Sn</b></font></td>
<td width='52%' bgcolor='#008000' height='21'><font
color='#FFFFFF'><b>Filename</b></font></td>
<td width='34%' bgcolor='#008000' height='21'><font
color='#FFFFFF'><b>Size</b></font></td>
</tr>");

for($i=1; $i<=UPLOAD_NO; $i++)
{

$just=filesize(${"infile".$i});
$fp_size[i] = $just;

if(${"infile".$i}!="none")
{
copy(${"infile".$i}, DESTINATION1.${"infile".$i."_name"});
copy(${"infile".$i}, DESTINATION2.${"infile".$i."_name"});
unlink(${"infile".$i});
{
echo("<tr>
<td width='14%' height='19'>$i</td>
<td width='52%' height='19'>${"infile".$i."_name"}</td>
<td width='34%' height='19'>$fp_size[i]</td>
</tr>
");
}
}
}
echo "</table>";
}
?>
Avatar billede tsocm Nybegynder
11. april 2001 - 06:03 #8
.
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
Vi tilbyder markedets bedste kurser inden for webudvikling

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester