第910天:php301转向,UCH2.0显示活动留言序号,把脚垫高做俯卧撑果然来劲

星期二 小雨转阴 8~13℃

php301转向

在 php 页面的最上面加入以下几行:

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.newdomain.com/");
exit();
?>

支持相对路径。

参考:http://www.zzbaike.com/wiki/301%E8%BD%AC%E5%90%91


UCH2.0 显示活动留言序号

修改文件:space_event.php(参考space_thread.php修改)

活动首页显示

原:

$comments = array();
$query = $_SGLOBAL['db']->query("SELECT * FROM ".tname(‘comment’)." WHERE id=’$eventid’ AND idtype=’eventid’ ORDER BY dateline DESC LIMIT 20");
while ($value = $_SGLOBAL['db']->fetch_array($query)) {
 realname_set($value['authorid'], $value['author']);
 $comments[] = $value;
}

改:

$comments = array();
$postnum = 1;//增加的
$query = $_SGLOBAL['db']->query("SELECT * FROM ".tname(‘comment’)." WHERE id=’$eventid’ AND idtype=’eventid’ ORDER BY dateline DESC LIMIT 20");
while ($value = $_SGLOBAL['db']->fetch_array($query)) {
 realname_set($value['authorid'], $value['author']);
 $value['num'] = $postnum;//增加的
 $comments[] = $value;
 $postnum++;//增加的
}

活动留言页显示

原:

$comments = array();
$count = $_SGLOBAL['db']->result($_SGLOBAL['db']->query("SELECT COUNT(*) FROM ".tname(‘comment’)." WHERE $csql id=’$eventid’ AND idtype=’eventid’"),0);
if($count) {
 $query = $_SGLOBAL['db']->query("SELECT * FROM ".tname(‘comment’)." WHERE $csql id=’$eventid’ AND idtype=’eventid’ ORDER BY dateline DESC LIMIT $start,$perpage");
 while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  realname_set($value['authorid'], $value['author']);
  $comments[] = $value;
 }
}

改:

$comments = array();
$postnum = $start+1;//增加的
$count = $_SGLOBAL['db']->result($_SGLOBAL['db']->query("SELECT COUNT(*) FROM ".tname(‘comment’)." WHERE $csql id=’$eventid’ AND idtype=’eventid’"),0);
if($count) {
 $query = $_SGLOBAL['db']->query("SELECT * FROM ".tname(‘comment’)." WHERE $csql id=’$eventid’ AND idtype=’eventid’ ORDER BY dateline DESC LIMIT $start,$perpage");
 while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  realname_set($value['authorid'], $value['author']);
  $value['num'] = $postnum;//增加的
  $comments[] = $value;
  $postnum++;//增加的
 }
}

模板调用(在 space_comment_li.htm 调用)

$value[num]


把脚垫高做俯卧撑果然来劲

这两天都在楼梯转角处做,这里做安静,一般不会有其他人出没。

今天看着台阶突然想起以前记过把脚垫高来做更来劲。于是试一下,放在第三个台阶上太高,放在第一个又太低,放在第二个正好,双臂直起时身体正好处于水平的样子。

慢慢的做了十几个,吃不消了。今天降温不少,发现冬天做俯卧撑热身挺好,不会太热也不会热不起来。


友吧今天

收尾活动详细页,开始嵌套个人中心。

RSS

上一篇:

下一篇:

发表评论

电子邮件地址不会被公开。 必填项已用*标注