forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: dquelhas on September 02, 2006, 08:49:51 pm

Title: Users id
Post by: dquelhas on September 02, 2006, 08:49:51 pm
Hi again,

I'm trying to retrieve the users id in the init.inc.php, but i have no returns.
Can someone help me with this?

Thanks in advance,

Dinis
Title: Re: Users id
Post by: dquelhas on September 02, 2006, 08:58:39 pm
The query i have done is:

$results = cpg_db_query("SELECT * FROM {$CONFIG['TABLE_USERS']}");
while ($row = mysql_fetch_array($results)) {
    echo $row['user_id'];
}

what is wrong with this?

Thanks in advance,

Dinis
Title: Re: Users id
Post by: dquelhas on September 02, 2006, 09:18:01 pm
Hello again,

i have tryed again

$results = cpg_db_query("SELECT * FROM {$CONFIG['TABLE_USERS']}");
while ($row = mysql_fetch_array($results)) {
    echo $CONFIG[$row['name']];
}

but no results again. Please help me.

Thanks,

Dinis
Title: Re: Users id
Post by: Sami on September 02, 2006, 09:53:48 pm
where did you run that code?
and also,
you have a global array for visitor:
USER_NAME has user name
USER_ID has id of user
Title: Re: Users id
Post by: Joachim Müller on September 03, 2006, 10:22:01 am
you have a global array for visitor:
Actually, those are constants (http://www.php.net/manual/en/language.constants.php), not arrays.

However, you're suppossed to use those contants as suggested instead of running yet another query.