How do I use ID_user?

H

holli

Guest
Can anyone help me with this?

Do I create a table for ID_user and password_record? If so, do I have to manually give users passwords? And where will they log in if so?

Thanks in advance! Thank you, thank you, thank you!
 
E

Eugenio

Guest
holli wrote:
>
> Can anyone help me with this?
>
> Do I create a table for ID_user and password_record? If so,
> do I have to manually give users passwords? And where will
> they log in if so?

Those field types are not used to allow users login, just to insert:
- the current user detected with the PHP function get_user()
- a unique ID generated by using the PHP function unique_ID() in conjunction with microtime(), getmypid() and md5()

see the documentation for further details.

Eugenio.

(Latest version of DaDaBIK when this message was posted: 2.2.1)
 
Top