-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathHoliday1.php
More file actions
134 lines (88 loc) · 5.39 KB
/
Copy pathHoliday1.php
File metadata and controls
134 lines (88 loc) · 5.39 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
include_once 'header_h.php';
?>
<?php
include_once 'roles.php';
?>
<?php
include_once 'config/config.php';
$id=$_GET['id'];
$q="SELECT * from holidays where Holiday_id=".$id.";";
$status = mysqli_query($connection_obj,$q);
if($status)
{
$data = mysqli_fetch_assoc($status);
}
?>
<form action="holiday_update.php" method="post" >
<section class="content">
<div class="container-fluid">
<div class="block-header">
<h2>HOLIDAYS</h2>
</div>
<!-- Input -->
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="body">
<input type="hidden" name="holidayid" class="form-control" value="<?php echo $_GET['id']; ?>" />
<h2 class="card-inside-title">Holiday Name:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="text" name="holidayname" class="form-control" value="<?php echo $data['Holiday_name']; ?>" />
</div>
</div>
<h2 class="card-inside-title">Holiday Description:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<textarea rows="4" class="form-control no-resize" name="holidaydescription"><?php echo $data['Holiday_description']; ?></textarea> </div>
</div>
<h2 class="card-inside-title">Holiday Date:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="date" class="form-control date" name="holidaydate" placeholder="Ex: 30/07/2016" value="<?php echo $data['Holiday_date']; ?>" >
</div>
</div>
<h2 class="card-inside-title">Created Date:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="date" class="form-control date" name="createddate" placeholder="Ex: 30/07/2016" value="<?php echo $data['Created_date']; ?>">
</div>
</div>
<h2 class="card-inside-title">Modified Date:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="date" class="form-control date" name="modifieddate" placeholder="Ex: 30/07/2016" value="<?php echo $data['Modified_date']; ?>">
</div>
</div>
<h2 class="card-inside-title">Status:</h2>
<div class="row clearfix">
<div class="col-sm-12">
<div class="form-group">
<div class="form-line">
<input type="text" name="status" class="form-control" value="<?php echo $data['Status']; ?>" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<center>
<input class="btn btn-primary waves-effect" name="submit" type="submit" value="SUBMIT" >
</center>
</section>
</form>
<?php
include_once 'footer_h.php';
?>