origin^sad
Mitglied
hi ich habe mir mal nen Uploadscript gebau nur uploaded er nicht hier das Script
wo ist der Fehler ?
danke im vorraus
PHP:
<?
if($action == "upload") {
$maximal = 25000; #### => 25kb
if((filesize($file) > $maximal)) {
$filesize = filesize($file);
print "File zu gross (>= 25 kb [$filesize] )"; }
elseif(($file_type != "image/gif")) {
print "Falscher Filetyp [$file_type]"; }
else {
@copy($file, "$DOCUMENT_ROOT/tests/forum/$file_name") or print "File was not uploaded"; #### => File Uploaden
}
}
else {
print <<<EOF
<form enctype="multipart/form-data" action="$PHP_SELF" method="post">
<input type="hidden" name="action" value="upload" size="" maxlength="">
<input type="file" name="file"><br>
<input type="submit" value="Senden">
EOF;
}
?>
wo ist der Fehler ?
danke im vorraus