I have to use a login form in my web based project. After the username and password has been verified from the database, the system has to display the module for which the user is given access to.
How do I code this aspect without using the anchor link.
eg: echo "<a href='somepage.php'>Youhave been directed to the abc system</a>; "
I have considered 2 options:
1).To have a select case and display the module address;
2).To get the module address from the database and direct the user to that page.
Help in both/either options will be very much appreciated.