<?php $username = "test"; $password = ""; $authString = $username . " " . md5($password); $file = "test\n"; echo $authString; if (strpos($file, $authString) !== FALSE ){ echo "LOGIN SUCCESS"; } else { echo 'INCORRECT CREDENTIALS. TRY AGAIN'; }
You have javascript disabled. You will not be able to edit any code.