Search the Community
Showing results for tags 'login'.
-
Hi there, not sure if this is the right module, but there it goes... I want to use social login in my website (i.e., visitors will login with their Facebook Twitter Instagram or Linkedin accounts, with pending confirmation from me/Admin), and the one I came up from my search was SUPER SOCIALIZER. For each login type I need to register for an API KEY. The process of getting this api seems quite cumbersome (here: http://support.heateor.com/how-to-get-facebook-app-id/) I wonder what would be your advice, according to your own experience. Should I go for it, and try a
-
Good day Admins, I have now variables $learner_id $student_pasword $student_id The learner_id and student_password are being used as their log in accounts. While the student_id is being used as their unique id and it is auto-incremented. Here are my codes. Student_login_handler.php <?php session_start(); include 'Connect.php'; $flag = ""; $learner_id = $_POST['learner_id']; $student_password = $_POST['student_password']; $query = "select last_login_date from student_information where learner_id='$learner_id' and student_password='$student_password'"; $result = mys