questo è uno script completo dove ad es mettevo "ORACE" come username e "ECM"come password e ha sempre funzionato, cosa dovrei cambiare? (qui il link sul sito)
<?
// set variables
$errorpage = "error.htm";
$combine = $username . $password;
// In the form, if surfer puts in User1 for the username and One for the password:
} else if(strstr($combine,"ORACLEECM")) {
// they get directed to this page:
include ("indice_ecm.htm");
// Wrong usernmae/password combo, they get directed to a custom error page:
} else { Header("Location: $errorpage");
exit; }
?>