<?php
include('connect-db.php');
require_once("db.php");
$studentid = SapDB::getInstance()->get_student_id_by_name($_SESSION['user']);
if ($result = $mysqli->query("SELECT * FROM file where student_id = $studentid"))
{
if ($result->num_rows > 0)
{
while($image = $result->fetch_assoc())
{
?>
<div style="width:200px ; height: 200px ; border:1px dashed red ; display:inline-block ; margin-top:5px ; margin-left:5px" class="postedBy">
<img src="<?php echo $image['image']; ?>">
</div><!--end image-->
<?php
}
}
}
?>
正如您所看到的,即时尝试使用php从我的mysql数据库中显示文件。代码有效但我的文件无法正常显示。图像中断了。请帮忙。