Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www
/
inc
/
[
Home
]
File: salutations.inc.php.orig
<?php // Retourne chaine de caractères au format "Prénom Nom" function format_prenom_nom ($prenom, $nom) { return ucwords(strtolower($prenom)) . " " . ucwords(strtolower($nom)); } $req="SELECT * from adherent WHERE id=$_SESSION[id]"; $rep=mysql_query($req,$con); $row=mysql_fetch_array($rep); $LeNom=$row['nom']; $LePrenom=$row['prenom']; $IdMembreConnecte=$_SESSION[id]; $MembreConnecteEstAbonne=$row['abonne_analyse']; mysql_free_result($rep); ?>
©
2020 Black Eagle Team