blob: 1ccf3f2353e22d345ad210a4c2da097475e8ef95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
# server switch webetud
if (($_SERVER["REMOTE_ADDR"] == "localhost")
|| ($_SERVER["REMOTE_ADDR"] == "127.0.0.1")
){
$login='etud';
$login='Inglebert';
} else {
VerifOuvertureSession("quelconque");
}
#################################################
# R�cup�ration login webetud
#################################################
function VerifOuvertureSession($typeParam)
{
session_start();
#peu importe
}
|