index.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <html>
  2. <head>
  3. <title>Utilitaire de recherche d'emploi - Liste des entreprises</title>
  4. <link href="custom.css" rel="stylesheet">
  5. <meta name="viewport" content="width=device-width">
  6. </head>
  7. <body>
  8. <h1>Utilitaire PHP de Recherche d'Emploi</h1>
  9. <h2>Liste des entreprises</h2>
  10. <?php
  11. ini_set('display_errors', 1);
  12. ini_set('display_startup_errors', 1);
  13. error_reporting(E_ALL);
  14. include("class/sqlconnect.php");
  15. // Récupère les données de la table Entreprise
  16. $sql = "SELECT Entreprise.ID, Entreprise.NomSociete, Contact.ID, Contact.Prenom, Contact.Nom, Entreprise.Adresse, StatutEntretien.Statut
  17. FROM Entreprise
  18. LEFT JOIN Contact ON Entreprise.ID = Contact.IDEntreprise
  19. LEFT JOIN StatutEntretien ON Entreprise.StatutEntretien = StatutEntretien.ID";
  20. $result = mysqli_query($conn, $sql);
  21. if (!$result) {
  22. die("Impossible de récupérer les données: " . mysqli_error($conn));
  23. }
  24. echo "<table style='border:1px solid #000;'>";
  25. echo "<tr><th style='border:1px solid #000;'>Nom de la société</th><th style='border:1px solid #000;'>Contact</th><th style='border:1px solid #000;'>Adresse</th><th style='border:1px solid #000;'>Statut</th><th style='border:1px solid #000;'>Entretiens</th></tr>";
  26. while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
  27. echo "<tr>";
  28. echo "<td style='border:1px solid #000;'>" . $row['NomSociete'] . "</td>";
  29. echo "<td style='border:1px solid #000;'>" . "<a href='infocontact.php?ID=" . $row['ID'] . "'>" . $row['Prenom'] . ' ' . $row['Nom'] . "</a>" . "</td>";
  30. echo "<td style='border:1px solid #000;'>" . $row['Adresse'] . "</td>";
  31. echo "<td style='border:1px solid #000;'>" . $row['Statut'] . "</td>";
  32. echo "<td style='border:1px solid #000;'>" . "<a href='infoentretien.php?ID=" . $row['ID'] . "'>Afficher les entretiens</a>" . "</td>";
  33. echo '</tr>';
  34. }
  35. echo "</table>";
  36. mysqli_close($conn);
  37. ?>
  38. <br>
  39. <button onclick="window.location.href='ajoutentreprise.php'" class="button">Créer une entreprise</button>
  40. <button onclick="window.location.href='ajoutcontact.php'" class="button">Créer un contact</button>
  41. <button onclick="window.location.href='modificationstatut.php'" class="button">Modifier le statut pour une entreprise</button>
  42. <br><br>
  43. <a href="creationentretientel.php">Saisir un entretien téléphonique</a><br>
  44. <a href="creationentretienphy.php">Saisir un entretien présentiel/visio</a>
  45. <footer>
  46. <a href="https://github.com/alexandremottier/PHP-RechercheEmploi" target="_blank">Made with love by Aiden ♥️</a>
  47. </footer>
  48. </body>
  49. </html>