Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Document</title>
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
- </head>
- <body>
- <div class="container">
- <h1 class="allign-middle">Projet Radeau</h1>
- <?php
- $code = 0;
- $annee = $_POST["annee"];
- $salaire = $_POST["salaire"];
- if ($annee < 2 && $salaire < 60000)
- {
- $code = 1;
- $pourcentage = 0;
- }
- else{
- if (($annee < 5 && $salaire < 100000) || ($annee >= 5 && $salaire < 60000))
- {
- $code = 2;
- $pourcentage = 1;
- }
- else
- {
- if (($annee >= 5 && ($salaire >= 60000 && $salaire < 100000)) || ($annee < 2 && $salaire >= 100000))
- {
- $code = 3;
- $pourcentage = 1.5;
- }
- else
- {
- if (($annee >= 2 && $annee < 5) && $salaire >= 100000)
- {
- $code = 4;
- $pourcentage = 2;
- }
- else
- {
- $code = 5;
- $pourcentage = 2.5;
- }
- }
- }
- }
- echo "Votre code est ".$code;
- ?>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment