これが私のコードです:
if(is_file($userName.".txt")) {
$userDetails = explode(',', file_get_contents($userName.".txt"));
print($userDetails[0]);
if ($password == $userDetails[0]) {
print('Correct login');
} else {
print('Incorrect login');
}
}
次のファイルがあります: Simon.txt の内容は次のとおりです。 $userDetails[0])?