Kolibri814
Mitglied
Hi,
könnt ihr mir bitte helfen.
Ich find einfach den Fehler nicht.
Bitte um Hilfe
Danke
könnt ihr mir bitte helfen.
PHP:
include("dbconnect.inc.php");
$dateigröße=$_FILES['datei']['size'];
$fd = fopen( $_FILES['datei']['name'], "rb" );
if( $fd ) {
$imageContent = fread( $fd, filesize( $_FILES['datei']['name'] ) );
fclose( $fd );
if ($dateigröße>153600)
{
header("Location: http://".$_SERVER['HTTP_HOST']
."/profil.php?meldung=Ihr Bild ist zu groß. Maximal 150kb");
}
else
{
$sql = "INSERT INTO profilbild (
id,
beschreibung,
datum,
name,
datei
)
VALUES(
'".$_POST['id']."',
'".$_POST['beschreibung']."',
'".$_POST['datum']."',
'".mysql_real_escape_string($_FILES['datei']['name'])."',
0x".bin2hex(file_get_contents($_FILES['datei']['tmp_name'])).");";
$result = mysql_query($sql) or die(mysql_error());
}
}
Ich find einfach den Fehler nicht.
Bitte um Hilfe
Danke