使用r将html文件保存到mysql中,并使用php显示该文件

66bbxpm5  于 2021-06-21  发布在  Mysql
关注(0)|答案(0)|浏览(170)

下面的代码是由r语言函数编写的:将html文件保存到数据库中

html_binary <- paste(readBin("EventChart3.html", what="raw", n=1e6), 
collapse='')
sql<-paste0("INSERT INTO test (`att`) VALUES ('",html_binary,"')")
dbSendQuery(connect,sql)

下面的代码是用php语言编写的函数:show the html file

$sql=sprintf("select * from test where id=37"); 
$result=mysql_query($sql);      
$row=mysql_fetch_assoc($result)  ;
print $row['id']."</br>";
header("content-type:text/html");     
echo $row['att'];

表只有两个属性1。id:自动递增,int 2。附件:保存二进制文件,blob
我的php显示了很多二进制代码,我不知道如何解决它。请给我帮助,谢谢大家

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题