mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-26 10:43:22 +01:00
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2007-2008 Jérémie Ollivier <jeremie.o@laposte.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
include('../master.inc.php');
|
|
require ('include/environnement.php');
|
|
require ('classes/Auth.class.php');
|
|
|
|
$username = $_POST['txtUsername'];
|
|
$password = $_POST['pwdPassword'];
|
|
|
|
|
|
$auth = new Auth ($conf_db_host,$conf_db_user, $conf_db_pass, $conf_db_base );
|
|
|
|
$retour = $auth->verif ($username, $password);
|
|
|
|
if ( $retour >= 0 ) {
|
|
|
|
$db = mysql_connect ($conf_db_host,$conf_db_user, $conf_db_pass);
|
|
mysql_select_db ($conf_db_base, $db);
|
|
|
|
$tab = $sql->fetchFirst ($sql->query ("
|
|
SELECT rowid, name, firstname
|
|
FROM llx_user
|
|
WHERE login = '".$username."'
|
|
;"));
|
|
|
|
$_SESSION['uid'] = $tab['rowid'];
|
|
$_SESSION['uname'] = $username;
|
|
$_SESSION['nom'] = $tab['name'];
|
|
$_SESSION['prenom'] = $tab['firstname'];
|
|
|
|
header ('Location: affIndex.php?menu=facturation&id=NOUV');
|
|
|
|
} else {
|
|
|
|
header ('Location: index.php?err='.$retour.'&user='.$username);
|
|
|
|
}
|
|
|
|
?>
|