-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathup_house2.php
39 lines (34 loc) · 915 Bytes
/
up_house2.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
<?php
require_once("config.php");
include("up_house_post.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Home Switch Home</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="wrapper">
<?php include("header.php") ?>
<div id="upload_avatar">
<!-- Debut du formulaire -->
<form enctype="multipart/form-data" action="upload_photos_logement.php?idlog=<?php echo($id_logement_photo)?>" method="post">
<fieldset>
<legend>Combien de photos souhaitez-vous enregistrer ?</legend>
<p>
<select name="nb_photos">
<option value="1" selected="selected">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</p>
<input type="submit" value="Valider"/>
</fieldset>
</form>
<!-- Fin du formulaire -->
</div>
<?php include("footer.php") ?>
</body>
</html>