Thank you so much but i've gotten a error says cannot fetch  so i looked up the code and  instead of  'real_name'  the field in mysql as 'realname'  so i've changed the code and also the last part was different so i've changed the code to this

$result = $db->query('SELECT u.email, u.title, u.realname, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());

hope someone looking for this kind of info would get some help.

anyways i really appreciate your help, lie2815.  thanks!

u know right now you see

"Scriptmx"
"New member"
"Registered: 2007-06-29"
"Posts: 4"

like that  but i want to show  first and last name also

"Scriptmx"
"John Thomas"
"New Member"
"Registered: 2007-06-29"
"Posts: 4"

can someone help me

i'm trying to display first and last name under the id  when the post is shown.  so i guess probably between the id and the display name(or rank)

i searched around but couldn't find any tips about doing this.  help please~~

4

(1 replies, posted in PunBB 1.2 troubleshooting)

usually there are two CSS files for a theme.

when you open a 'style' folder there should be one and then open  'style/imports' there should be another one.
first one usually deals with structures and the other one usually deals with fonts and line-height stuff like that.

so if you want to change font styles look up the css file in style/imports

5

(1 replies, posted in PunBB 1.2 troubleshooting)

Okay solved.

I read through rank  php file but couldn't find any limitations so i figured it would be on MySQL
so looked around and found that there was a limit in rank id field  char was set to 30  so i've changed to higher number and now no problem with limitation

it seems like there is a character number limitation in rank name
i've put rank name in korean but after certain number of letters it crashes into symbols like %& that.

how can i go beyond limitation or even erase any limitation for the rank name?