PDA

View Full Version : display field from database on welcome panel


aymelek
12-05-2009, 09:24 PM
I have a custom field in my user data table that I want to be displayed on the welcome panel. There will be two users who will always be shown on the welcome panel and I want to have the amount in the field to be displayed next to their name.

I can get the field to display in a post ($post['money']) however I am unsure how to get it to be displayed in the welcome panel.

--------------- Added 1260130511 at 1260130511 ---------------

I've been reading this article (https://vborg.vbsupport.ru/showthread.php?t=119350) and found some great examples. I put the following code in my template, but have not been able to echo anything out. What could I be doing wrong?

<?php
$result = $db->query_read("SELECT money FROM user where userid = '285'");
$aurormoney = $db->fetch_field($result);
echo $aurormoney;
?>