-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathrendu.php
103 lines (81 loc) · 2.65 KB
/
rendu.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
require __DIR__ . "/vendor/autoload.php";
## ETAPE 0
## CONNECTEZ VOUS A VOTRE BASE DE DONNEE
### ETAPE 1
####CREE UNE BASE DE DONNEE AVEC UNE TABLE PERSONNAGE, UNE TABLE TYPE
/*
* personnages
* id : primary_key int (11)
* name : varchar (255)
* atk : int (11)
* pv: int (11)
* type_id : int (11)
* stars : int (11)
*/
/*
* types
* id : primary_key int (11)
* name : varchar (255)
*/
#######################
## ETAPE 2
#### CREE DEUX LIGNE DANS LA TALE types
# une ligne avec comme name = feu
# une ligne avec comme name = eau
#######################
## ETAPE 3
# AFFICHER DANS LE SELECTEUR (<select name="" id="">) tout les types qui sont disponible (cad tout les type contenu dans la table types)
#######################
## ETAPE 4
# ENREGISTRER EN BASE DE DONNEE LE PERSONNAGE, AVEC LE BON TYPE ASSOCIER
#######################
## ETAPE 5
# AFFICHER LE MSG "PERSONNAGE ($name) CREER"
#######################
## ETAPE 6
# ENREGISTRER 5 / 6 PERSONNAGE DIFFERENT
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Rendu Php</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<nav class="nav mb-3">
<a href="./rendu.php" class="nav-link">Acceuil</a>
<a href="./personnage.php" class="nav-link">Mes Personnages</a>
<a href="./combat.php" class="nav-link">Combats</a>
</nav>
<h1>Acceuil</h1>
<div class="w-100 mt-5">
<form action="" method="POST" class="form-group">
<div class="form-group col-md-4">
<label for="">Nom du personnage</label>
<input type="text" class="form-control" placeholder="Nom">
</div>
<div class="form-group col-md-4">
<label for="">Attaque du personnage</label>
<input type="text" class="form-control" placeholder="Atk">
</div>
<div class="form-group col-md-4">
<label for="">Pv du personnage</label>
<input type="text" class="form-control" placeholder="Pv">
</div>
<div class="form-group col-md-4">
<label for="">Type</label>
<select name="" id="">
<option value="" selected disabled>Choissisez un type</option>
</select>
</div>
<button class="btn btn-primary">Enregistrer</button>
</form>
</div>
</body>
</html>