<?php
$con = mysql_connect("localhost","root","")
mysql_select_db("database",$con)
mysql_query("set names utf8")
$sql="select * from daschool order by id desc limit 1,1000"//limit 1,1000中的1要可变存于cookie中吧,数据库里也行,运行一次加1000
$result = mysql_query($sql)
$fp = fopen('xxx.html','r')//只写模式打开txt文档
$content="<html><head></head><body>"
while($source=mysql_fetch_assoc($result)){
$content = $content."<h1>".$source["title"]."</h1><div>".$source["article"]."</div><br/>"
}
$content = $content."</body></html>"
fwrite($fp,$content)
fclose($fp)
上述程序仅仅为思路,需要调试和添加,详细的文件 *** 作可以参考
http://www.tocus.com.cn/?send=article_show&id=77&class=2
还有程序不应定要用网页打开,可以尝试php cli
http://www.tocus.com.cn/?send=article_show&id=56&class=2
这位网友你好,如果想让某个容器(div或者li或者...块级元素)显示一行文字,当文字内容过多时,不换行,而是出现省略号,可以使用text-overflow属性,还必须定义:强制文本在一行内显示(white-space:nowrap)及溢出内容为隐藏(overflow:hidden)。只有这样才能实现溢出文本显示省略号的效果。如果你想要多行文本最后出现省略号,那么单纯的html和css是做不到的,必须用js或者其他后台语言实现。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)