-
Notifications
You must be signed in to change notification settings - Fork 0
/
teste.php
78 lines (43 loc) · 1.11 KB
/
teste.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
<?php
include('conexao_bd.php');
include('verifica_login.php');
@$msg = $_POST['msg'];
$usu = $_SESSION['usu'];
if(!isset($_POST['msg'])){
echo $msg;
}else{
date_default_timezone_set("America/Sao_Paulo");
$date = date('H:i:s');
$sql = "insert into chat (usuario,mensagem,horario) values ('$usu','$msg','$date');";
$result = $con->query($sql);
if($result){
}else{
echo "erro ao executar!";
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Siscon</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style2.css">
<script src="js/jquery-2.2.3.min.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
});
</script>
</head>
<body>
<nav>
<div id="login">
<center>
<form method="POST" action="teste.php">
<Br><input type="text" placeholder=" Digite aqui sua mensagem " name="msg" ><Br><br>
<input id='submit' type="submit" value=' Enviar '>
</form>
</center>
</div>
</div>
</body>
</html>