PHP differentiates upper case letters and lower case letters in variable names, you'll have to change the upper case 'L' of '$Login1' to a lower case 'L'.
Quote:
|
$sonuc = $Login1['login'];
|
->
Quote:
|
$sonuc = $login1['login'];
|
You will also have to use the correct comparison operator for variables, which is '==', not '='.
Quote:
->
Quote:
Greez,
Ciel