Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: sername = stripslashes($myusername); $mypassword = stripslashes($mypassword); // Selecting the username and password in the database table, and comparing the form values to the database values $query = "SELECT * FROM test WHERE Username='$myusername' and Password='$mypassword'"; // Querying the form entries with the database, and ensuring that the count is equal […]
↧