1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| <html>
<head>
</head>
<title>
Projet Oracle php
</title>
<body>
<?php
include("connexion.php");
?>
<link rel="stylesheet" media="screen" type="text/css" title="Design" href="design.css" />
<div id="bandeau">
<h1>Bienvenue dans votre outil de recherche d'informations </h1>
<hr>
</div>
<div id="contenu">
<center><table BORDER=5 WIDTH=40% HEIGHT=600 BORDERCOLOR="#336699" CELLSPACING=2>
<caption>Infos Base 1</caption>
<thead> <!-- En-tête du tableau -->
<tr>
<th>Informations</th>
<th>Valeurs</th>
</tr>
</thead>
<tbody> <!-- Corps du tableau -->
<tr>
<td>Date de démarage</td>
<td>$query = "SELECT STARTUP_TIME FROM v$instance";</td>
</tbody>
</table>
<a href="Y:\Documents stage\Site Projet\projet.html" title="Pour revenir au sommaire, cliquez ici !!">Revenir au sommaire</a></p>
<div id="piedpage">
<br>
<center><p>Cette page a été créée par CADET Julien, stagiaire à la DSI</p></center></div>
<?php
include("deconnexion.php");
?>
</body>
</html>
</body>
</html> |
Partager