-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (24 loc) · 715 Bytes
/
index.php
File metadata and controls
25 lines (24 loc) · 715 Bytes
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
<?php
include 'lib/tab_ville.php';
?>
<html>
<head>
<title>Code postal</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://code.jquery.com/jquery-1.10.2.js" type="text/javascript"></script>
<script src="js/affichageinfoCMP.js" type="text/javascript"></script>
</head>
<body>
<div class="arr_plan"></div>
<select id="ville" onchange="afficheCMP(this.value)">
<?php
optionVille();
?>
</select>
<div id="f_modale">
<span class="fermer">Fermer</span>
<div id="contentCMP"></div>
</div>
</body>
</html>