Liebe Freunde,
ich bin ein Anfänger und möchte wissen, wie man „Longblob“ in „Image“ umwandelt. Ich habe Bilder in MySQL Datenbank gespeichert und will sie gerne ausgeben, aber es erscheint eine lange Kette von Sonderzeichen. Ich habe gerade die Bildverarbeitung und -genierung (PHP: Bildverarbeitung und -generierung - Manual) gelesen und nichts passendes gefunden.
Kann mir jemand helfen?
Danke!
Mein Quellcode in PHP seiht wie folgt aus:
[COLOR=red][FONT="]<?php[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Anmelden[/FONT][/COLOR]
[COLOR=black][FONT="] function anmelden [/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$localhost[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$user[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$password[/FONT][/COLOR][COLOR=red][FONT="])[/FONT][/COLOR]
[COLOR=red][FONT="]{[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqlhost[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=black][FONT="]$localhost[/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR][COLOR=#c0c000][FONT="]// MySQL-Host angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqluser[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=black][FONT="]$user[/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR][COLOR=#c0c000][FONT="]// MySQL-User angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqlpwd[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=black][FONT="]$password[/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR][COLOR=#c0c000][FONT="]// Passwort angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=black][FONT="]= mysql_connect[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$mysqlhost[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$mysqluser[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$mysqlpwd[/FONT][/COLOR][COLOR=red][FONT="])[/FONT][/COLOR][COLOR=red][FONT="]or[/FONT][/COLOR][COLOR=black][FONT="] die [/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]"Verbindungsversuch fehlgeschlagen"[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=black][FONT="] return [/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=red][FONT="]}[/FONT][/COLOR]
[COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=black][FONT="]= anmelden[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]"localhost"[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=#0000f0][FONT="]"root"[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=#0000f0][FONT="]""[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Name der Tabelle angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqldb[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]'Test_db'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Auf Datenbank zugreifen [/FONT][/COLOR]
[COLOR=black][FONT="] mysql_select_db[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$mysqldb[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="])[/FONT][/COLOR][COLOR=red][FONT="]or[/FONT][/COLOR][COLOR=black][FONT="] die[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]'Konnte die Datenbank nicht waehlen.'[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=black][FONT="]mysql_set_charset[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]'utf8'[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Die Zeille in ein Array speichern[/FONT][/COLOR]
[COLOR=maroon][FONT="]$sql[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"SELECT * FROM `Test_db`.`Test_tb`;"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=black][FONT="]= mysql_fetch_array[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=black][FONT="]mysql_query[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$sql[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="]));[/FONT][/COLOR]
[COLOR=maroon][FONT="]$id[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"id"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$vorn[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"Vorname"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$name[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"Name"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$bild[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"Bild"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$id[/FONT][/COLOR][COLOR=red][FONT="] .[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$vorn[/FONT][/COLOR][COLOR=red][FONT="] .[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$name[/FONT][/COLOR][COLOR=red][FONT="] .[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print imagecreatefromstring[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$bild[/FONT][/COLOR][COLOR=red][FONT="]).[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$bild[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] mysql_close[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=black][FONT="] exit[/FONT][/COLOR][COLOR=red][FONT="]();[/FONT][/COLOR]
[COLOR=red][FONT="]?>[/FONT][/COLOR]
[COLOR=red][FONT="]Und die Ausgabe sieht so aus:[/FONT][/COLOR]
0
Peter
Mueller
Resource id #5
ÿØÿà[FONT="]�[/FONT]JFIF[FONT="]�[/FONT][FONT="][1][/FONT][FONT="]�[/FONT]`[FONT="]�[/FONT]`[FONT="]��[/FONT]ÿíJPhotoshop 3.0[FONT="]�[/FONT]8BIM í Resolution[FONT="]���� ……. und [/FONT][FONT="]so[/FONT][FONT="]weite zwei Seiten lang.[/FONT]
ich bin ein Anfänger und möchte wissen, wie man „Longblob“ in „Image“ umwandelt. Ich habe Bilder in MySQL Datenbank gespeichert und will sie gerne ausgeben, aber es erscheint eine lange Kette von Sonderzeichen. Ich habe gerade die Bildverarbeitung und -genierung (PHP: Bildverarbeitung und -generierung - Manual) gelesen und nichts passendes gefunden.
Kann mir jemand helfen?
Danke!
Mein Quellcode in PHP seiht wie folgt aus:
[COLOR=red][FONT="]<?php[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Anmelden[/FONT][/COLOR]
[COLOR=black][FONT="] function anmelden [/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$localhost[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$user[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$password[/FONT][/COLOR][COLOR=red][FONT="])[/FONT][/COLOR]
[COLOR=red][FONT="]{[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqlhost[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=black][FONT="]$localhost[/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR][COLOR=#c0c000][FONT="]// MySQL-Host angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqluser[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=black][FONT="]$user[/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR][COLOR=#c0c000][FONT="]// MySQL-User angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqlpwd[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=black][FONT="]$password[/FONT][/COLOR][COLOR=#0000f0][FONT="]"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR][COLOR=#c0c000][FONT="]// Passwort angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=black][FONT="]= mysql_connect[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$mysqlhost[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$mysqluser[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$mysqlpwd[/FONT][/COLOR][COLOR=red][FONT="])[/FONT][/COLOR][COLOR=red][FONT="]or[/FONT][/COLOR][COLOR=black][FONT="] die [/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]"Verbindungsversuch fehlgeschlagen"[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=black][FONT="] return [/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=red][FONT="]}[/FONT][/COLOR]
[COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=black][FONT="]= anmelden[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]"localhost"[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=#0000f0][FONT="]"root"[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=#0000f0][FONT="]""[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Name der Tabelle angeben[/FONT][/COLOR]
[COLOR=maroon][FONT="]$mysqldb[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]'Test_db'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Auf Datenbank zugreifen [/FONT][/COLOR]
[COLOR=black][FONT="] mysql_select_db[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$mysqldb[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="])[/FONT][/COLOR][COLOR=red][FONT="]or[/FONT][/COLOR][COLOR=black][FONT="] die[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]'Konnte die Datenbank nicht waehlen.'[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=black][FONT="]mysql_set_charset[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=#0000f0][FONT="]'utf8'[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=#c0c000][FONT="]// Die Zeille in ein Array speichern[/FONT][/COLOR]
[COLOR=maroon][FONT="]$sql[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=#0000f0][FONT="]"SELECT * FROM `Test_db`.`Test_tb`;"[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=black][FONT="]= mysql_fetch_array[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=black][FONT="]mysql_query[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$sql[/FONT][/COLOR][COLOR=red][FONT="],[/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="]));[/FONT][/COLOR]
[COLOR=maroon][FONT="]$id[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"id"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$vorn[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"Vorname"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$name[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"Name"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=maroon][FONT="]$bild[/FONT][/COLOR][COLOR=black][FONT="]= [/FONT][/COLOR][COLOR=maroon][FONT="]$row[/FONT][/COLOR][COLOR=red][FONT="][[/FONT][/COLOR][COLOR=#0000f0][FONT="]"Bild"[/FONT][/COLOR][COLOR=red][FONT="]];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$id[/FONT][/COLOR][COLOR=red][FONT="] .[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$vorn[/FONT][/COLOR][COLOR=red][FONT="] .[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$name[/FONT][/COLOR][COLOR=red][FONT="] .[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print imagecreatefromstring[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$bild[/FONT][/COLOR][COLOR=red][FONT="]).[/FONT][/COLOR][COLOR=#0000f0][FONT="]'<br />'[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] print [/FONT][/COLOR][COLOR=maroon][FONT="]$bild[/FONT][/COLOR][COLOR=red][FONT="];[/FONT][/COLOR]
[COLOR=black][FONT="] mysql_close[/FONT][/COLOR][COLOR=red][FONT="]([/FONT][/COLOR][COLOR=maroon][FONT="]$connection[/FONT][/COLOR][COLOR=red][FONT="]);[/FONT][/COLOR]
[COLOR=black][FONT="] exit[/FONT][/COLOR][COLOR=red][FONT="]();[/FONT][/COLOR]
[COLOR=red][FONT="]?>[/FONT][/COLOR]
[COLOR=red][FONT="]Und die Ausgabe sieht so aus:[/FONT][/COLOR]
0
Peter
Mueller
Resource id #5
ÿØÿà[FONT="]�[/FONT]JFIF[FONT="]�[/FONT][FONT="][1][/FONT][FONT="]�[/FONT]`[FONT="]�[/FONT]`[FONT="]��[/FONT]ÿíJPhotoshop 3.0[FONT="]�[/FONT]8BIM í Resolution[FONT="]���� ……. und [/FONT][FONT="]so[/FONT][FONT="]weite zwei Seiten lang.[/FONT]
Kommentar