當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Utilisateur::connexion方法代碼示例

本文整理匯總了PHP中Utilisateur::connexion方法的典型用法代碼示例。如果您正苦於以下問題:PHP Utilisateur::connexion方法的具體用法?PHP Utilisateur::connexion怎麽用?PHP Utilisateur::connexion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Utilisateur的用法示例。


在下文中一共展示了Utilisateur::connexion方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: addUser

function addUser($conn)
{
    // ajout de l'adresse avec retour id
    // ajout utilisaeur avec id adresse
    $idville = is_numeric($_POST['ville']) ? (int) $_POST['ville'] : 0;
    $numrue = is_numeric($_POST['num']) ? (int) $_POST['num'] : 0;
    $nomrue = trim($_POST["adr"]);
    $idadresse = (int) Utilisateur::addAdress($conn, $idville, $numrue, $nomrue);
    //int
    $nom = trim($_POST["nom"]);
    //chaine
    $prenom = trim($_POST["prenom"]);
    //chaine
    $mail = trim($_POST["mail"]);
    //chaine
    $tel = is_numeric($_POST['tel']) ? (int) $_POST['tel'] : 0;
    //int
    $password = trim($_POST["pass"]);
    //chaine
    $estouvert = 1;
    //int
    $idsysuser = 0;
    //int
    $user = Utilisateur::addUser($conn, $idadresse, $nom, $prenom, $mail, $tel, $password, $estouvert, $idsysuser);
    if ($user != null) {
        $est_co = Utilisateur::connexion($conn, $mail, $password);
        if ($est_co) {
            $req = "select IDUTILISATEUR from utilisateur WHERE MAIL = '{$mail}';";
            $result = odbc_exec($conn, $req);
            $id = odbc_result($result, 1);
            $req = "select IDSYSUSER from utilisateur WHERE MAIL = '{$mail}';";
            $result = odbc_exec($conn, $req);
            $sysuser = odbc_result($result, 1);
            // while(odbc_fetch_row($result)){
            //   $id = odbc_result($result, 1);
            $_SESSION['idsysuser'] = $sysuser;
            $_SESSION['utilisateur'] = $id;
        } else {
            echo 'nan';
        }
    }
}
開發者ID:Jakkos,項目名稱:AppartToutatis,代碼行數:42,代碼來源:modal.php

示例2: Utilisateur

<?php

require_once "user.class.php";
require_once '../config/config.php';
if (isset($_POST['login']) && isset($_POST['motdepasse'])) {
    $login = $_POST['login'];
    $pass = $_POST['motdepasse'];
    $user = new Utilisateur();
    if ($user->connexion($login, sha1($pass), $pdo)) {
        session_start();
        $_SESSION['name'] = '$login';
        $_SESSION['id'] = $user->id();
        header('Location: ../pages/index.html');
    } else {
        header('Location: ../pages/page_connexion.html');
    }
}
開發者ID:DiarraDIOP,項目名稱:Pasteque,代碼行數:17,代碼來源:connect.php


注:本文中的Utilisateur::connexion方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。