我有一个问题:我需要将我的数据(一条记录)从数据库(mysql)插入到 php 中的 word 2007 文件中,这是我的代码:
$ms=new mysql_class;
$ms->ex_sql("select `title`,`pic` from `picture` where `id`='$id'",$qs);
$data.=$qs[0]['title']."\n";
$data.=$qs[0]['pic']."\n";
$fil = fopen('../news.docx','w+');
//$data=strip_tags($data);
fwrite($fil,$data);
fclose($fil);
downloadFile('../news.docx');
die($data);
但它显示的是地址而不是我的图片。我该怎么做才能插入我的图片?提前致谢。