Moin Moin,
hab ein kleines Problem mit meinem Upload Skript!
Und zwar möchte ich eine kleine Bilddatei in der DB Speichern, habe folgendes Script/Formular dafür geschrieben:
[PHP]<form name="form1" method="post" enctype="multipart/form-data" action="<?=$PHP_SELF?>?aktion=ulfile">
<input type="text" name="name">
Name<br>
<input type="file" name="bild">
Bild
<br>
<input type="submit" name="Submit" value="Abschicken">
</form>
<p><?
require_once("../Connections/cmflphp.php");
mysql_select_db("coltde");
if (!is_uploaded_file($bild))
die("$bild ist keine Datei!");
$tempfile = fopen($bild,"rb");
$filedata = fread($bild,filesize($bild));
$filedata = addslashes($bild);
$sql = "INSERT INTO fl_php_test SET
bild_name = '$bild_name',
bild_type = '$bild_type',
name = '$name',
bild_data = '$bild_data'";
$ok = @mysql_query($sql);
if(!$ok) die("Datenbankfehler" . mysql_error());
?>[PHP]
Beim ausführen bekomme ich folgende Fehlermeldung:
Was mache ich falsch?
Vielen Dank für die Hilfe!
Gruß
Baschi
hab ein kleines Problem mit meinem Upload Skript!
Und zwar möchte ich eine kleine Bilddatei in der DB Speichern, habe folgendes Script/Formular dafür geschrieben:
[PHP]<form name="form1" method="post" enctype="multipart/form-data" action="<?=$PHP_SELF?>?aktion=ulfile">
<input type="text" name="name">
Name<br>
<input type="file" name="bild">
Bild
<br>
<input type="submit" name="Submit" value="Abschicken">
</form>
<p><?
require_once("../Connections/cmflphp.php");
mysql_select_db("coltde");
if (!is_uploaded_file($bild))
die("$bild ist keine Datei!");
$tempfile = fopen($bild,"rb");
$filedata = fread($bild,filesize($bild));
$filedata = addslashes($bild);
$sql = "INSERT INTO fl_php_test SET
bild_name = '$bild_name',
bild_type = '$bild_type',
name = '$name',
bild_data = '$bild_data'";
$ok = @mysql_query($sql);
if(!$ok) die("Datenbankfehler" . mysql_error());
?>[PHP]
Beim ausführen bekomme ich folgende Fehlermeldung:
PHP-Code:
Warning: fread(): supplied argument is not a valid stream resource in /xxx/xxx/xxx/xxx/upload/upload.php on line 29
Vielen Dank für die Hilfe!
Gruß
Baschi
Kommentar