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
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
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
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
Quote from: bmossavari on September 02, 2006, 09:53:48 PM
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.