Quote from: David on March 21, 2003, 04:10:32 AM
Good idea. What is the vairable that ID_MEMBER is stored in, like username is $username.
Also is there a function to look up ID_MEMBER given a username? Like the forgotten password the user inputs the username.
$ID_MEMBER.
Why use a function??
SELECT ID_MEMBER
FROM {$db_prefix}members
WHERE memberName='hi';
(the query only uses keys, so it would be fast too... could be integrated into another query of course...)
As far as the logging.... that's why I seperated the error logging in my secret project. No there's a log_error function that ONLY logs an error. (which simplifies things...)
-[Unknown]