You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
382 B
15 lines
382 B
3 years ago
|
<?php
|
||
|
header('Content-Type: text/html; charset=UTF-8');
|
||
|
?>
|
||
|
<?php
|
||
|
header('Content-type: image/jpg');
|
||
|
require "fun.php";
|
||
|
$StuXm = $_GET['studentname'];
|
||
|
$sql = "select ZP from XS where XM ='$StuXm'";
|
||
|
$result = $db->query(iconv('UTF-8', 'UTF-8', $sql));
|
||
|
|
||
|
list($ZP) = $result->fetch(PDO::FETCH_NUM);
|
||
|
|
||
|
$image = base64_decode($ZP);
|
||
|
echo $image;
|
||
|
?>
|