我正在尝试插入属于员工资料的图片。
我的代码:
<?php
$sql = "SELECT * FROM employeeTbl where department='aarhus';";
$rows=$conn->query($sql);
foreach ($rows as $row){
echo '<div class="col-xs-6 col-sm-3" style="min-height:225px;overflow:hidden; margin-top:30px">;
?>
<img src="getimage.php?aid=<?php echo $row["aid"]; ?>" />
<?php
echo '<h2 style="margin-top:-10px">'.$row["name"].'</h2>';
echo '<i class="fa fa-envelope" aria-hidden="true"></i> <a href="mailto:'.$row["mail"].'">' .$row["mail"].'</a>';
echo "</div>";
}
?>
我的getimage.php代码是:
<?php
$conn = mysql_connect("mysql34.unoeuro.com", "user", "pass");
mysql_select_db("dbname") or die(mysql_error());
if(isset($_GET['aid'])) {
$sql = "SELECT image FROM employeeTbl WHERE aid=" . $_GET['aid'];
$result = mysql_query("$sql") or die("<b>Error:</b> Problem on Retrieving Image BLOB<br/>" . mysql_error());
$row = mysql_fetch_array($result);
header('Content-Type: image/jpeg');
echo $image;
}
mysql_close($conn);
?>
我的数据库援助是自动增量。
希望你能帮助我 - 或者找到更好的解决方案。
答案 0 :(得分:0)
在第一步中,不推荐使用mysql,我建议使用mysqli函数。
关于创建图片我建议使用以下代码:
$data = base64_decode($image);
$im = imagecreatefromstring($data);
if ($im !== false) {
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
}