热搜:6KBBS6kbbs V8.0 官方论坛
当前位置: 6kbbs V8.0 官方论坛 » 使用问题 » 就改模板里一个数字,引起中间部分不显示,怎么办?急~
帖子状态  
本帖子共有 1885 位阅读者, 3 个回复.
  • 回复
4条记录

fuhao

幼儿园
帖子
金钱
魅力
威望
注册
2011-02-15 
fuhao 发表于 2011-02-19 12:20   
就改模板里一个数字,引起中间部分不显示,怎么办?急~
我去到模板风格里修改模板index.html中的代码以个数字,把15改成21,就出现了上面的问题。
这段代码:
<!--
EOT;
$newtopicstr='';
$newtopics=$db->row_select("topics","verifystate=0 and isrecycle=0",15,"id,fid,title,username,highlight,posttime,ordertime,lastreply","ordertime desc");
$newi=0;
foreach($newtopics as $newtopic){
$newi++;
$newtopic['title']=htmlFilter($newtopic['title']);
$newtopic['username']=htmlFilter($newtopic['username']);
if(!empty($newtopic['highlight'])){
  $newtopic['title']=genHighLighStr($newtopic['highlight'],$newtopic['title']);
}
if($newtopic['posttime']==$newtopic['ordertime']){
  $newtopic['posttime']=getDateStr($newtopic['posttime']);
  $linktitle="{$newtopic['username']} 发表于 {$newtopic['posttime']}";
}else{
  $lastre=explode("\t",$newtopic['lastreply']);
  $linktitle=htmlFilter($lastre[1])." 回复于 ".getDateStr($lastre[0]);
}
$viewurl=genUrl("view.php?tid={$newtopic['id']}");
if($newi<4){
  $newtopicstr.="<li class='bigtitle'><a href=\"{$viewurl}\" title=\"{$linktitle}\" target=\"_blank\">{$newtopic['title']}</a></li>";
}else{
  $newtopicstr.="<li class='normaltitle'><a href=\"{$viewurl}\" title=\"{$linktitle}\" target=\"_blank\">【{$cache_forums[$newtopic['fid']]['forumname']}】{$newtopic['title']}</a></li>";
}
}
print <<<EOT
-->
红色是我修改的数字,就修改这个然后后出问题了。本来以为修改15为21是想把显示的文章多两行,没想到出问题了,希望有人帮忙给解决问题。跪求~~

我没想到这程序好小气~不懂下次再不敢乱改了。。。。。

我重新把数字改回来在上传到空间都不行了,嗨~怎么办啊。。。。

zym

管理员
帖子
1104 
金钱
8002 
魅力
1083 
威望
1083 
头衔
Founder 
注册
2004-07-12 
zym 发表于 2011-02-19 16:11   
RE:就改模板里一个数字,引起中间部分不显示,怎么办?急~
不是你改数字的问题。
应该是你用的编辑器(可能是记事本)保存的时候,没有用utf-8编码保存。
官网虚拟主机购买:QQ 70767766

fuhao

幼儿园
帖子
金钱
魅力
威望
注册
2011-02-15 
fuhao 发表于 2011-02-20 10:58   
RE:就改模板里一个数字,引起中间部分不显示,怎么办?急~
哦,谢谢~~~

liujam

小学生
帖子
12 
金钱
23 
魅力
23 
威望
23 
注册
2011-04-22 
liujam 发表于 2011-04-22 23:42   
RE:就改模板里一个数字,引起中间部分不显示,怎么办?急~
版主正解,BOM头的问题,养成好习惯,用DW来编辑,否则会很烦的。
  • 回复
4条记录