本文整理汇总了PHP中interPool::validate_login方法的典型用法代码示例。如果您正苦于以下问题:PHP interPool::validate_login方法的具体用法?PHP interPool::validate_login怎么用?PHP interPool::validate_login使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类interPool
的用法示例。
在下文中一共展示了interPool::validate_login方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: interPool
}
}
} else {
if (!isset($_GET['logout'])) {
$pool = new interPool();
if (!is_null($pool->readCookie("pmh"))) {
$cValue = $pool->readCookie("pmh");
$cValueA = explode(":", $cValue);
$username = $cValueA[0];
$password = $cValueA[1];
$id_pool = $cValueA[2];
if (!$pool->dbConnect("pmh")) {
$message = "Problèmes avec la base de données. Ré-essayez plus tard...";
} else {
$id_pool = $pool->getIdPoolForLogin("PMH");
$rtn = $pool->validate_login($username, $password, $id_pool);
$rtnL = explode(" ", $rtn);
if ($rtnL[0] != "OK") {
$message = $rtn;
} else {
$id_gerant = $rtnL[1];
$id_saison = $pool->getSaisonID($id_pool);
$periode = $pool->getPeriode($id_pool, $id_saison);
$pool->set_account_stats($id_pool, $id_gerant, $id_saison);
$pool_type = $pool->getPoolType($id_pool, $id_saison);
$sess->setSessVar('authenticated', TRUE);
// Set that authentication occurred.
$sess->setSessVar('id_pool', $id_pool);
// Store the ligue_id in the session
$sess->setSessVar('user', $username);
// Store the username in the session
示例2: isset
$champ_id_pool = isset($_REQUEST['pool']) ? $_REQUEST['pool'] : '';
list($id_pool, $poolName) = split("_", $champ_id_pool);
if (empty($user) || empty($pswd) || $id_pool == 0) {
// Display error message when fields are not filled in.
$message = 'Tous les champs doivent ×tre remplis.';
} else {
// Connexion a la bd
if (!$pool->dbConnect(strtolower($poolName))) {
session_destroy();
// Delete session created (new DB_eSession)
echo "<SCRIPT language=\"javascript\">";
echo "alert('Erreur lors de la connexion à la base de données. Réessayer plus tard.');";
echo "</SCRIPT>";
exit;
}
$rtn = $pool->validate_login($user, $pswd, $id_pool);
$rtnL = explode(" ", $rtn);
if ($rtnL[0] != "OK") {
$message = $rtn;
} else {
$id_gerant = $rtnL[1];
$id_saison = $pool->getSaisonID($id_pool);
$sess->setSessVar('authenticated', TRUE);
// Set that authentication occurred.
$sess->setSessVar('id_pool', $id_pool);
// Store the ligue_id in the session
$sess->setSessVar('id_saison', $id_saison);
$sess->setSessVar('gerant', $rtnL[1]);
$sess->setSessVar('poolName', $rtnL[3]);
$sess->setSessVar('user', $user);
// Store the username in the session