Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 用户栏目的调用问题(请知道的人进来帮助下)

[复制链接]
qq18844111 发表于 2010-4-8 18:15:51 | 显示全部楼层 |阅读模式


上面的图是首页显示的! 一共是显示20个用户!  

我在后台用户组栏目增加了职业用户组!  我想把这个职业用户组调用到首页,
每个用户城市名的后面!  这个代码该怎么写呢!



这是我首页现在的代码!
<p>$value[resideprovince] $value[field_1]</p>
可只显示北京 后面的职业不显示!  有管理和明白点的人告诉我该怎么弄吗!!!!

以下的是我的index.php 的代码!  该怎么修改呢!
  1. <?php
  2. /*
  3.         [UCenter Home] (C) 2007-2008 Comsenz Inc.
  4.         $Id: index.php 13003 2009-08-05 06:46:06Z liguode $
  5. */

  6. include_once('./common.php');

  7. if(is_numeric($_SERVER['QUERY_STRING'])) {
  8.         showmessage('enter_the_space', "space.php?uid=$_SERVER[QUERY_STRING]", 0);
  9. }

  10. //二级域名
  11. if(!isset($_GET['do']) && $_SCONFIG['allowdomain']) {
  12.         $hostarr = explode('.', $_SERVER['HTTP_HOST']);
  13.         $domainrootarr = explode('.', $_SCONFIG['domainroot']);
  14.         if(count($hostarr) > 2 && count($hostarr) > count($domainrootarr) && $hostarr[0] != 'www' && !isholddomain($hostarr[0])) {
  15.                 showmessage('enter_the_space', $_SCONFIG['siteallurl'].'space.php?domain='.$hostarr[0], 0);
  16.         }
  17. }

  18. if($_SGLOBAL['supe_uid']) {
  19.         //已登录,直接跳转个人首页
  20.         showmessage('enter_the_space', 'space.php?do=home', 0);
  21. }

  22. if(empty($_SCONFIG['networkpublic'])) {
  23.        
  24.         $cachefile = S_ROOT.'./data/cache_index.txt';
  25.         $cachetime = @filemtime($cachefile);
  26.        
  27.         $spacelist = array();
  28.         if($_SGLOBAL['timestamp'] - $cachetime > 900) {
  29.                 //20位热门用户
  30.                 $query = $_SGLOBAL['db']->query("SELECT s.*, sf.resideprovince, sf.residecity
  31.                         FROM ".tname('space')." s
  32.                         LEFT JOIN ".tname('spacefield')." sf ON sf.uid=s.uid
  33.                         ORDER BY s.friendnum DESC LIMIT 0,20");
  34.                 while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  35.                         $spacelist[] = $value;
  36.                 }
  37.                 swritefile($cachefile, serialize($spacelist));
  38.         } else {
  39.                 $spacelist = unserialize(sreadfile($cachefile));
  40.         }
  41.        
  42.         //应用
  43.         $myappcount = 0;
  44.         $myapplist = array();
  45.         if($_SCONFIG['my_status']) {
  46.                 $myappcount = $_SGLOBAL['db']->result($_SGLOBAL['db']->query("SELECT COUNT(*) FROM ".tname('myapp')." WHERE flag>='0'"), 0);
  47.                 if($myappcount) {
  48.                         $query = $_SGLOBAL['db']->query("SELECT appid,appname FROM ".tname('myapp')." WHERE flag>=0 ORDER BY flag DESC, displayorder LIMIT 0,7");
  49.                         while ($value = $_SGLOBAL['db']->fetch_array($query)) {
  50.                                 $myapplist[] = $value;
  51.                         }
  52.                 }
  53.         }
  54.                
  55.         //实名
  56.         foreach ($spacelist as $key => $value) {
  57.                 realname_set($value['uid'], $value['username'], $value['name'], $value['namestatus']);
  58.         }
  59.         realname_get();
  60.        
  61.         $_TPL['css'] = 'network';
  62.         include_once template("index");
  63. } else {
  64.         include_once(S_ROOT.'./source/network.php');
  65. }

  66. ?>
复制代码
 楼主| qq18844111 发表于 2010-4-8 19:49:36 | 显示全部楼层
回复

使用道具 举报

 楼主| qq18844111 发表于 2010-4-9 06:16:51 | 显示全部楼层
回复

使用道具 举报

s939514 发表于 2010-5-1 18:49:44 | 显示全部楼层
这个...偶不知道.就帮你顶一下吧.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 20:23 , Processed in 0.024100 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表