-
Notifications
You must be signed in to change notification settings - Fork 0
/
readpubli.php
67 lines (55 loc) · 1.24 KB
/
readpubli.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
<?php
include("bdd/readpubli_bdd.php");
?><!DOCTYPE html>
<html>
<head>
<?php
include("raccourcis/link_header.php");
?>
<title>Postes-ton programme</title>
</head>
<body>
<?php
include("raccourcis/header.php");
?>
<div class="container_principal">
<div class="container">
<h1>Postes-ton programme !</h1>
<div class="section">
<form method="POST" action="">
<table style="border:0px; padding:0px; margin:0px;">
<tr>
<th colspan="2">
<textarea cols="95" rows="30" name="msg" placeholder="Contenu du programme..."></textarea>
</th>
</tr>
<tr>
<td align="right">
Langage utilisé :
</td>
<td>
<input type="text" id="langage" name="langage" />
</td>
</tr>
<tr>
<th colspan="4">
<?php
if(isset($erreur)) {
echo '<font color="red">'.$erreur."</font>";
}else{
}
?>
<br/>
<input type="submit" name="readpubli" value="Poster" />
</th>
</tr>
</table>
</form>
</div>
</div>
<?php
include("raccourcis/footer.php");
?>
</div>
</body>
</html>