Current File : /home/d/i/g/digitaw/Ycof/client/intermediaire.php
<?php 

if(isset($_POST['afficher'])){
    $assurances = $_POST['assurances'];
    if($assurances == 'voyage'){
        header('Location: ./assurancesvoyage.php');
    }
    if($assurances == 'sante'){
       header('Location: ./assurancessante.php');
    }
    if($assurances == 'auto'){
       header('Location: ./assurancesauto.php');
    }
    if($assurances == 'habitation'){
       header('Location: ./assuranceshabitation.php');
    }
}