-
Notifications
You must be signed in to change notification settings - Fork 0
/
sponser.php
52 lines (44 loc) · 2.34 KB
/
sponser.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
<?php
require_once 'header.php';
if (!verifySession()) {
header("Location: index.php");
}
$sponser=mysqli_query($connection,"SELECT * FROM `sponser`");
?>
<div class="container-fluid">
<div class="row">
<nav class="col-md-2 d-none d-md-block sidebar">
<?php require_once 'sidebar.php';?>
</nav>
<div class="col-md-10 mt-3">
<div class="row">
<label style='color:black; font-size:24px; font-family: Verdana, Geneva, Tahoma, sans-serif;'>Sponser Details</label>
<br/><br/>
<br/>
<div>
</div>
</div>
<div class="row mt-4">
<div class="col-md-9">
<h4 class = "panel-title"><ul class = "list-group">
<?php while($s=mysqli_fetch_assoc($sponser)) {?>
<li class = "list-group-item" >
<h3 style='color:black; font-size:20px; font-family: Verdana, Geneva, Tahoma, sans-serif;'>Organisation Name: <span style='color:black; font-size:17px; font-family: Verdana, Geneva, Tahoma, sans-serif;'><?php echo $s['org_name'] ?></span></h3>
<br/>
<h3 style='color:black; font-size:20px; font-family: Verdana, Geneva, Tahoma, sans-serif;'>Contact: <span style='color:black; font-size:17px; font-family: Verdana, Geneva, Tahoma, sans-serif;'><?php echo $s['contact'] ?></span></h3>
<br/>
<h3 style='color:black; font-size:20px; font-family: Verdana, Geneva, Tahoma, sans-serif;'>Amount: <span style='color:black; font-size:17px; font-family: Verdana, Geneva, Tahoma, sans-serif;'><?php echo $s['amount'] ?></span></h3>
<br/>
<</li>
<?php }?>
</ul>
<button style='color:white;font-size:18px; background-color:black;padding:15px;font-family: Verdana, Geneva, Tahoma, sans-serif;' type="submit" class="btn" style="width: 220px;"name='update' id='update'> <a style='color:white;text-decoration:none;'href='welcomej.php'>Back </a></button>
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>