<?php

require_once '../../../Entity/connexion_db.php';
require_once '../../../Entity/compagnie.php';
session_start();
if ($_SESSION['admin'] == true) {
    //echo 'OK';
    if (isset($_POST['compagnie']) && isset($_POST['logo'])) {
        try {
            // $req = $bdd->exec("INSERT INTO compagnie (libelle_comp) VALUES ('" . $_POST['compagnie'] . "')");
            // echo 'compagnie ajoutée';
            $compagnie = new Compagnie($_POST['compagnie'], $_POST['logo']);
            $compagnie->addCompagnie($compagnie->getNom(), $compagnie->getLogo());
            header("location:compagnie-liste.php");
        } catch (Exception $ex) {
            echo 'erreur lors de l\'ajout de la compagnie' . $ex->getMessage();
        }
    }
} else {
    header('location: ../../index.php');
}
?>

<html lang="en">
<head>
    <link rel="stylesheet" type="text/css" href="../../../css/bootstrap.min.css">
    <link rel="stylesheet" type="text/css" href="../../../css/style.css">
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>