0
I need to choose users from two different tables for authentication. Is it possible ? Thank you in advance!
mysql authentication
4 Réponses
+ 2
yes it is possible.
select * from table1,table2 where table1.id=table2.id
+ 1
well I can't actually get what you want. if possible please elaborate a bit.
0
like for example I want to verify if the user is admin table or in teacher table. this is for authentication of my system
0
I used two tables for my different users. one is for admin and one is for teacher.
Now in login form. I want to verify if the user is admin or teacher for the authentication.