-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.php
28 lines (23 loc) · 968 Bytes
/
rules.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
<?php //include("include/config.php");?>
<?php include("include/header.php");?>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<script src="js/bootstrap.min.js"></script>
<a href="index.php"><li> Home </li> </a>
<a href="donor.php"><li> Donors </li></a>
<a href="registration.php" target="_blank"><li> Apply </li> </a>
<a href="gallery.php"><li> Gallery </li> </a>
<a href="rules.php"><li class='active'> Rules </li> </a>
<a href="login.php"><li> Login </li></a>
</ul>
</div>
<div id="body">
<?php
$sql = "select * from rules";
$result=mysql_query($sql);
while($arr= mysql_fetch_array($result))
{
//echo $arr['rules_and_regulation'];
echo '<p style="text-align:justify;margin-bottom:20px; padding: 0px 10px 0px 10px;font-size:18px;">'.$arr['rules_and_regulation'].'</p>';
}
?>
<?php include("include/footer.php");?>