-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
64 lines (54 loc) · 2.03 KB
/
index.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
<?php
include('db_connect.php');
if(isset($_REQUEST['submit'])){
$notice = $_REQUEST['notice'];
// $username = "Bijay";
if($notice <> ""){
$query = "INSERT INTO `notice`(`notice`, `userid`) VALUES ('$notice','$username')";
$result = mysqli_query($con,$query);
echo "Record successfully inserted.";
}
else{
echo "Enter something on notice box.";
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notice box</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="page">
<div class="input-form">
<form action="<?php $_PHP_SELF ?>" method="post" class="input-form">
<label for="notice">Write your notice below</label>
<textarea name="notice" id="notice" cols="30" rows="10" autofocus required></textarea>
<button type="submit" name="submit">Add Notice</button>
</form>
</div>
<div class="notice-scroll">
<h2>Notice Box</h2>
<marquee behavior="" direction="up" height="200" class="box">
<div class="list">
<ol name="item-collection">
<?php
$query = "SELECT * FROM `notice`";
$result = mysqli_query($con,$query);
if($result -> num_rows > 0){
while($row = $result -> fetch_assoc()){
?><li name="list-item"><?php echo $row['notice'];?></li><?php
}
}
?>
</ol>
</div>
</marquee>
</div>
</div>
</body>
</html>