| 
				 Minilogin Password? 
 Just wanted to know if this needs a password. For example when you add another account to your DB, what does the person need to put in for a password?
 insert into account (name,status, minilogin_ip) values('YOURNAMEHERE', 250, '127.0.0.1');
 
 I thought I saw in another thread that you can insert a password in there. Like....
 
 insert into account (name,password,status, minilogin_ip) values('YOURNAMEHERE', 'PASSWORD', 250, '127.0.0.1');
 
 Is that right?
 Do you just type your login name two times? one for login and same for password?  I want to add more accounts to my DB but not sure how they use password part.  thanks
 			 Last edited by solid11; 03-10-2005 at 03:02 PM..
 |