hi, ich habe ein kleines upload script erstellt, das leider nicht funktioniert.
das script reagiert überhaupt nicht. Es trägt weder die Datein in die DB ein, noch läd es was hoch.
gruß
PHP:
<?php
error_reporting(E_ALL);
include 'config.php';
// Konfigurationsdatei laden
@mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) OR die(mysql_error());
mysql_select_db(MYSQL_DATABASE) OR die(mysql_error());
include "style/header.tpl";
?>
<form action="upload1.php" method="post">
<input type="text" name="sort" value="Sortierungsnummer"/>
<input type="text" name="title" value="Titel"/>
<input type="text" name="text" value="Beschreibung"/>
<input type="file" name="datei">
<br/><input type="submit" value="Eintragen"/>
<input type="reset" value="Verwerfen"/>
</form>
<?php
if(empty($_FILES['datei'])) {
echo "Bitte füllen sie alles sorgfälltig aus";
break;
}
move_uploaded_file($_FILES['datei']['tmp_name'], "upload/".$_FILES['datei']['name']);
echo "Das Bild wurde Erfolgreich nach upload/".$_FILES['datei']['name']." hochgeladen. Bitte bestätigen sie das Bild noch.";
mysql_query ("INSERT INTO download (sort,date,title,text,file) values ('" . $_POST['sort'] . "',NOW(),'" . $_POST['title'] . "','" . $_POST['text'] . "','" . $_FILES['datei'] . "')");
echo "Das Bild wurde erfolgreich bestätigt.";
?>
das script reagiert überhaupt nicht. Es trägt weder die Datein in die DB ein, noch läd es was hoch.
gruß