如何在 drupal 6 中的一个简单页面上显示配置文件字段值?

发布于 2024-09-07 14:01:20 字数 301 浏览 2 评论 0原文

我想获取我在用户配置文件部分中创建的自定义配置文件字段,

我想获取该值并在一个简单的页面上显示我已经尝试过这个......

<?php print $profile['Personal Information']['profile_fname']['#value']; ?>

但它不起作用......

我想显示该页面上的所有字段...

提前致谢,
尼茨

更新:

我得到了答案......

i want to get the custom profile fields which i have made in user profile part,

i want to get that values and show on one simple page i have tried this one....

<?php print $profile['Personal Information']['profile_fname']['#value']; ?>

but its not working....

i want to show all the fields on that page....

thanks in advance,

Nitz

UPDATE:

i got the answer....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三五鸿雁 2024-09-14 14:01:20
// load profile fields
profile_load_profile($account); 

//print values - 
//note the variable names after $account-> are the names given when you created the custom fields for the user profiles
<?php echo $account->profile_first_name;?> 
<?php echo $account->profile_last_name;?>
// load profile fields
profile_load_profile($account); 

//print values - 
//note the variable names after $account-> are the names given when you created the custom fields for the user profiles
<?php echo $account->profile_first_name;?> 
<?php echo $account->profile_last_name;?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文