-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.php~
72 lines (55 loc) · 1.44 KB
/
tables.php~
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<?php
include('./functions.php');
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>BDD</title>
<link type='text/css' rel='stylesheet' href='css/style.css'/>
</head>
<!-- BEGINING OF THE PAGE -->
<body>
<?php
include('connect.php');
?>
<div id="mainDiv">
<div id="pageTitle">
<h1>Projet De Base De Donnees</h1>
</div>
<div id="pageMenu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="#">Table</a></li>
<li><a href="#">Requêtes</a></li>
</ul>
</div>
<div id="contents">
<div style='overflow: scroll;' id="leftdiv">
<h2 class='titleA' >Table des films</h2>
<?php echo filmTab(); ?>
</div>
<div style='overflow: scroll;' id="rightdiv">
<h2 class='titleA' >Supportts En Magasin</h2>
<?php echo EnMagasinTab(); ?>
</div>
<div style='overflow: scroll;' id="viddiv">
<h2 class='titleA' >Table Des Locations</h2>
<?php echo LocationTab(); ?>
</div>
<div style='overflow: scroll;' id="viddiv">
<h2 class='titleA' >Table Des Magasins</h2>
<?php echo MagasinTab(); ?>
</div>
<div style='overflow: scroll;' id="viddiv">
<h2 class='titleA' >Table Des Support</h2>
<?php echo SupportTab(); ?>
</div>
<div style='overflow: scroll;' id="viddiv">
<h2 class='titleA' >Table Des Clients</h2>
<?php echo ClienTab(); ?>
</div>
</div>
</div>
</body>
</html>