-
Notifications
You must be signed in to change notification settings - Fork 0
/
lendbook.php
118 lines (94 loc) · 3.2 KB
/
lendbook.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
// require 'includes/snippet.php';
require 'includes/db-inc.php';
include "includes/header.php";
if(isset($_POST['submit'])){
$mcard = trim($_POST['memberCardID']);
$bdate = trim($_POST['borrowDate']);
$due = trim($_POST['dueDate']);
$sql = "INSERT INTO borrow(memberName, matricNo, bookName, borrowDate, returnDate) values('$mcard', '$bdate', '$due')";
$query = mysqli_query($conn, $sql);
if($query){
echo "
<script>
alert('New record added');
</script>
";
}
else {
echo "
<script>
alert('Unsuccessful');
</script>
";
}
}
?>
<div class="container">
<?php include "includes/nav2.php"; ?>
<div class="container col-lg-9 col-md-11 col-sm-12 col-xs-12 col-lg-offset-2 col-md-offset-1 col-sm-offset-0 col-xs-offset-0 " style="margin-top: 30px">
<div class="jumbotron login col-lg-10 col-md-11 col-sm-12 col-xs-12">
<p class="page-header" style="text-align: center">LEND BOOK</p>
<div class="container">
<form class="form-horizontal" role="form" action="lend-student.php" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="Book Title" class="col-sm-2 control-label">BOOK TITLE</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="bookTitle" id="bookTitle" placeholder="Enter Book Title">
</div>
</div>
<div class="form-group">
<label for="Book Title" class="col-sm-2 control-label">MEMBER NAME</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="bookTitle" id="bookTitle" value="<?php echo $name; ?>">
</div>
</div>
<div class="form-group">
<label for="Member Card ID" class="col-sm-2 control-label">MATRIC NO</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="memberCardID" value="<?php echo $number; ?>">
</div>
</div>
<div class="form-group">
<label for="Borrow Date" class="col-sm-2 control-label">BORROW DATE</label>
<div class="col-sm-10">
<input type="date" class="form-control" name="borrowDate" id="brand">
</div>
</div>
<div class="form-group">
<label for="Password" class="col-sm-2 control-label">RETURN DATE</label>
<div class="col-sm-10" id="show_product">
<input type='date' class='form-control' name='dueDate'>
</div>
</div>
<div class="form-group ">
<div class="col-sm-offset-2 col-sm-10 ">
<button type="submit" class="btn btn-info col-lg-4 " name="submit">
Submit
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script>
$(document).ready(function(){
$('#brand').change(function(){
var brand_id = $(this).val();
$.ajax({
url:"load_data.php",
method:"POST",
data:{brand_id:brand_id},
success:function(data){
$('#show_product').html(data);
}
});
});
});
</script>
</body>
</html>