ive been trying to create login form in autoit with mysql... and it logins nomater what you enter...
Code:
$SQL = _MySQLConnect($Connection[2], $Connection[3], "mydb", $Connection[0])
If @error Then MsgBox(0, "", "failed")
$VerifyLoginInp = _Query($SQL, "SELECT username FROM accounts WHERE 'username' = '"&guictrlread($usernamelogin)&"'")
If GUICtrlRead($UsernameLogin) = $VerifyLoginInp Then
MsgBox(0, "", "KKKKKKKKKK")
;~ Exit
EndIf
Exit
any1 can help ?