-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathreport.php
45 lines (37 loc) · 1.11 KB
/
report.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
<?php include('createpdf.php') ?>
<?php include('header.php'); ?>
<div class="container">
<center>
<h3 style="padding: 15px;">Registration Report</h3>
<div class="table-responsive table-hover table-bordered col-12 " >
<table class="table " >
<thead >
<tr class="table-primary">
<th width="6%">Name</th>
<th width="4%">Event</th>
<th width="2%">Email</th>
<th width="1%">Year</th>
<th width="1%">Gender</th>
<th width="4%">From date</th>
<th width="4%">To date</th>
<th width="4%">No of people</th>
</tr>
<tbody>
<?php
echo fetch_data();
?>
</tbody>
</table>
<div class="col-md-12 " align="right">
<form method="post"><center>
<input type="submit" class="btn btn-primary" name="generate_pdf" value=" Generate PDF" />
</center>
</form>
</div>
</thead>
</table>
</div>
</div>
</center>
</div>
<?php include('footer.php'); ?>