我是php中的菜鸟我无法在php中显示图像数据。我尝试了1小时,但无法理解问题。请帮忙。
<?php
ini_set('mysql.connect_timeout',300);
ini_set('default_socket_timeout',300);
?>
<form method="post" enctype="multipart/form-data">
<br/>
<input type="file" name="image"/>
<br/><br/>
<input type="submit" name="submit" value="Upload"/>
</form>
<?php
if(isset($_POST['submit'])
{
$imagedata=mysql_real_escape_string(file_get_contents($_FILES["image"],["tmp_name"]));
echo $imagedata;
}
else
{
echo "there has been some error";
}
?>
</body>
答案 0 :(得分:0)
固定代码:
SerialDataReceivedEventArgs
但是,这只会输出二进制数据。如果你想真正展示图像,你将不得不做更多的事情......