时间:2021-07-01 10:21:17 帮助过:33人阅读
2.引用该类,并从数据库中调用nation表的数据
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document</title> </head> <body> <?php if(!isset($_GET["id"])) { ?> <input type="button" name="submit" value="将表格内容保存到Word" onclick="window.location.href=‘main.php?id=print‘"> <?php } ?> <?php if($_GET["id"]!="") { include("word.class.php"); 将word类引用进来 $word=new word(); 对该类进行实例化 $word->start(); 调用start()方法,定义要保存表格的开始 } ?> <table border="1" cellspacing="0" cellpadding="0"> <tr><th>代号</th><th>名称</th></tr> <?php include("../gongju/DBDA.class.php"); $db=new DBDA(); $sql="select * from nation"; $attr=$db->Query($sql); foreach($attr as $v) { echo "<tr><td>{$v[0]}</td><td>{$v[1]}</td></tr>"; } ?> </table> <?php if($_GET["id"]!=""){ $word->save("data.doc"); 保存表格结束 } ?> </body> </html>
PHP操作:将数据库中的数据保存到Word中。
标签:sub order 清空 lan ati utf-8 调用 div button