Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www.old
/
private
/
admin
/
[
Home
]
File: test.php
<?php include("../../inc/enligne_param.inc.php"); session_start(); $req = "select * from adherent where login = '$_POST[login]' and pass='$_POST[pass]' and actif ='oui'"; $rep=mysql_query($req,$con) or die (__LINE__.$req.$mysql.error()); $nb=mysql_num_rows($rep); if($nb!=1) { header("location:index.php?err=1"); } else { $ROW=mysql_fetch_array($rep); $_SESSION['id']=$ROW['id']; $_SESSION['droit']=$ROW['droit']; //Ajout pour gestion des acces à l'ajout, modification et suppression des seances d'impression : BEGIN $_SESSION['animateur_seance_impr']=$ROW['animateur_seance_impr']; //Ajout pour gestion des acces à l'ajout, modification et suppression des seances d'impression : END header("location:accueil.php"); } ?>
©
2020 Black Eagle Team