Understanding Nested If.. Else statements
- by user1174762
For some reason my PHP login script keeps returning "invalid email/password combination", yet i know I am entering the correct email and password. Does anyone see what I might be doing wrong?
<?php
$email= $_POST['email'];
$password= $_POST['password'];
if (!empty($email) && !empty($password))
{
$connect=…