|
|
|
@ -1,7 +1,8 @@
|
|
|
|
|
<div>
|
|
|
|
|
<h1>Choix utilisateur</h1>
|
|
|
|
|
<form action="" method="post">
|
|
|
|
|
<select name="choix_utilisateur" id="">
|
|
|
|
|
<div>
|
|
|
|
|
<h1>Choix de l'utilisateur</h1>
|
|
|
|
|
<select name="choix_utilisateur_alias" id="">
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
require_once ($_SERVER["DOCUMENT_ROOT"]."/services/bdd/domaines.php");
|
|
|
|
@ -9,7 +10,7 @@
|
|
|
|
|
|
|
|
|
|
$liste_utilisateurs = listeUtilisateursPostfix($pdo);
|
|
|
|
|
$liste_domaines = listeDomainesPostfix($pdo);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
foreach ($liste_utilisateurs as $utilisateur_bdd => $utilisateur) {
|
|
|
|
|
if ($utilisateur['utilisateur']==$_SESSION['identifiant_utilisateur']) {
|
|
|
|
@ -27,7 +28,7 @@
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
<select name="choix_domaine" id="">
|
|
|
|
|
<select name="choix_domaine_alias" id="" onchange='document.getElementById("d1").innerHTML = this.options[this.selectedIndex].text'>
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
@ -47,16 +48,28 @@
|
|
|
|
|
// $domainesPostfix = new domainesPostfix;
|
|
|
|
|
// $domainesPostfix->lister_domaines_postfix($pdo);
|
|
|
|
|
//echo $liste_domaine[1]['domaine'];
|
|
|
|
|
echo "<pre>";
|
|
|
|
|
/*echo "<pre>";
|
|
|
|
|
echo "<h2>Liste des utilisateurs</h2>";
|
|
|
|
|
var_dump($liste_utilisateurs);
|
|
|
|
|
echo "<h2>Liste des domaines</h2>";
|
|
|
|
|
var_dump($liste_domaines);
|
|
|
|
|
// var_dump($domainesPostfix->lister_domaines_postfix($pdo));
|
|
|
|
|
echo "</pre>";
|
|
|
|
|
echo $liste_domaines[1]['domaine'];
|
|
|
|
|
|
|
|
|
|
echo $liste_domaines[1]['domaine'];*/
|
|
|
|
|
|
|
|
|
|
//echo $voiture['nombre_portes'];
|
|
|
|
|
?>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<h1>Ajouter un alias</h1>
|
|
|
|
|
<input type="text" name="prefix_alias">
|
|
|
|
|
<input type="text" name="nom_alias">
|
|
|
|
|
<p id="d1"><?php echo $liste_domaines[0]["domaine"]; ?></p>
|
|
|
|
|
<input type="submit">
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|