所以我想我永远不会得到答案大声笑......
旧问题,请阅读编辑
我试图在将其上传到mysql数据库后显示图片。
但是通过尝试打开图片,firefox会显示以下警告:
无法显示图像,因为它包含错误
我已经在谷歌搜索了几个小时了,但我真的无法找到解决这个问题的方法。所以现在你们是我最后的希望:)。
这是php:
<?php
session_start();
$con = mysql_connect("localhost", "...", "...");
mysql_select_db('...',$con);
$id = $_GET['id'];
$result = mysql_query("SELECT image, mime FROM artikel WHERE id='$id'");
$row = mysql_fetch_object($result);
header("Content-type: $row->mime");
echo $row->image;
?>
修改 我认为错误在于insert.php .. 有人可以看看它并告诉我可能有什么问题吗?谢谢:)(我认为图片上传不正确)
<?php
session_start();
header('content-type: text/html; charset=utf-8');
$uname = $_POST['username'];
$typ = $_POST['typ'];
$titel = $_POST['titel'];
$content = $_POST['content'];
$timestamp = time();
$db = new mysqli("localhost", "...", "...", "...");
if($db->connect_errno > 0){
die("Unable to connect to database: " . $db->connect_error);
}
if(is_uploaded_file($_FILES['image']['tmp_name'])) {
// Verweis auf Bild
$image = $_FILES['image']['tmp_name'];
// Vorbereiten für den Upload in DB
$data = addslashes(file_get_contents($image));
// Metadaten auslesen
$meta = getimagesize($image);
$mime = $meta['mime'];
}
//create a prepared statement
$stmt = $db->set_charset("utf8");
$stmt = $db->prepare("INSERT INTO artikel (`red`, `typ`, `titel`, `content`, `image`, `mime`, `timestamp`) VALUES (?,?,?,?,?,?,?)");
//bind the username and message
$stmt->bind_param('sssssss', $uname, $typ, $titel, $content, $data, $mime, $timestamp);
//run the query to insert the row
$stmt->execute();
header("Location: erfolg.php");
?>
答案 0 :(得分:0)
我按照here的指示行事。我插入了带有额外mime字段的图像,并检查代码是否正常工作。
确认您的mime类型是否正确。如果是,则可能图像可能已损坏。
只是
header("Content-type: ");
也为我工作。
$result = mysql_query("$sql") or die("Invalid query: " . mysql_error());
$row = mysql_fetch_object($result);
/*Only for testing purpose.*/
// echo $row->mime; //This line should output image/jpeg
/*Only for testing purpose*/
/*Only to check output*/
header("Content-type: $row->mime");
echo $row->image;
/*Only to check output*/
答案 1 :(得分:0)
试试这个。检查是否要插入值。如果插入并仍然收到错误,请发布数据库的图片与我之前的帖子相比。
//create a prepared statement
$stmt = $db->set_charset("utf8");
$stmt = $db->prepare("INSERT INTO artikel (`red`, `typ`, `titel`, `content`, `image`, `mime`, `timestamp`) VALUES (?,?,?,?,?,?,?)");
//run the query to insert the row
$stmt->execute(array($uname, $typ, $titel, $content, $data, $mime, $timestamp));
header("Location: erfolg.php");