-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBooks.php
More file actions
49 lines (44 loc) · 1.73 KB
/
Books.php
File metadata and controls
49 lines (44 loc) · 1.73 KB
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
<?php
$sql=mysqli_connect("localhost","root","","library");
<if(isset($_POST['submit']))
?>
<!DOCTYPE html>
<html>
<head>
<title>LMS-Library Management System</title>
<link rel="icon" href="">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style type="text/css">
.j1{
/*background-color:#4842f4;*/
}
</style>
</head>
<body>
<div class="jumbotron j1">
<div class="row justify-content-center">
<h2>Welcome to Library Management System</h2>
</div>
<div class="form">
<form method="POST">
BOOK-NAME: <input type="text" name="bname" placeholder="Enter The Name of the Book">
<br> <br>
BOOK-AUTHOR: <input type="text" name="aname" placeholder="Enter Book Author">
<br> <br>
BOOK-PRICE: <input type="number" name="bprice" placeholder="Enter The Price">
<br> <br>
BOOK-YEAR: <input type="number" name="byear" placeholder="Enter The Published Year">
<br> <br>
BOOK-SEMESTER: <input type="number" name="bsem" placeholder="Enter The Particular Semester for which it is made">
<br> <br>
<input type="submit" name="login">
</form>
</div>
</div>
</body>
</html>