phpBB 3:在底层数据库中查找其他用户字段

时间:2010-12-19 12:11:14

标签: phpbb phpbb3

我使用phpBB 3.0.7-PL1(即将升级)与CentOS 5.5和PostgreSQL 8.4.6并在注册时向新用户显示以下附加问题以防止垃圾邮件:

What is your gender please? Answers: Robot/Man/Woman

我在数据库中找到了相应的条目:

pref=> select * from phpbb_profile_lang;
 field_id | lang_id | lang_name |        lang_explain         | lang_default_value
----------+---------+-----------+-----------------------------+--------------------
        5 |       2 | Sex       | Please specify your gender  |
(1 row)

pref=> select * from phpbb_profile_fields_lang;
 field_id | lang_id | option_id | field_type | lang_value
----------+---------+-----------+------------+------------
        5 |       2 |         0 |          5 | Robot
        5 |       2 |         1 |          5 | Man
        5 |       2 |         2 |          5 | Woman
(3 rows)

我的问题是:我现在想知道哪个用户男人哪个用户女人(我需要将其用于我的论坛中集成的游戏)俄语,这样我就可以正确地参考玩家了)。

但我找不到,这些值存储在哪里,其中“phpbb_xxxx”表和字段。有人知道吗?

谢谢! 亚历

1 个答案:

答案 0 :(得分:0)

好的,我通过更改用户的性别和区分数据库转储来找到它 - 它位于表格 phpbb_profile_fields_data

我在index.php中使用:

获取了该值
$sql = 'SELECT pf_sex FROM ' . 
  PROFILE_FIELDS_DATA_TABLE . 
  ' WHERE user_id=' . $user->data['user_id'];
$result = $db->sql_query($sql);
if ($row = $db->sql_fetchrow($result))
        $pf_sex = $row['pf_sex'];
$db->sql_freeresult($result);