Bonjour,
J'ai un prg php dans lequel j'aiJ'ai un autre prg php (fonctions.php) dans lequel j'ai une fonction authentification, une fonction connexionUtilisateur, celle ci appelant la fonction connexionLdap.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 <?php /* * Created on 2 mars 2010 * * To change the template for this generated file go to * Window - Preferences - PHPeclipse - PHP - Code Templates */ include('fonctions.php'); authentification($login); echo $login; connexionUtilisateur($login); ?>
Je n'arrive pas à faire passer le paramètre $login présent dans authentification à la fonction connexionUtilisateur.
comment faire ?
Merci
Partager