-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
130 lines (123 loc) · 3.96 KB
/
header.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
119
120
121
122
123
124
125
126
127
128
129
130
<?php
include "config.php";
$page=basename($_SERVER['PHP_SELF']);
switch($page)
{
case "single.php":
if(isset($_GET['id']))
{
$sql_title="SELECT* FROM post WHERE post_id={$_GET['id']}";
$result_title=mysqli_query($conn,$sql_title) or die ("Query Failed!");
$row_title=mysqli_fetch_assoc($result_title);
$page_title=$row_title['title'];
}
else{
$page_title="No Page Found!";
}
break;
case "search.php":
if(isset($_GET['search']))
{
$page_title=$_GET['search'];
}
else{
$page_title="No Page Found!";
}
break;
case "category.php":
if(isset($_GET['cid']))
{
$sql_title="SELECT* FROM category WHERE category_id={$_GET['cid']}";
$result_title=mysqli_query($conn,$sql_title) or die ("Query Failed!");
$row_title=mysqli_fetch_assoc($result_title);
$page_title=$row_title['category_name'];
}
else{
$page_title="No Page Found!";
}
break;
case "author.php":
if(isset($_GET['aid']))
{
$sql_title="SELECT* FROM user WHERE user_id={$_GET['aid']}";
$result_title=mysqli_query($conn,$sql_title) or die ("Query Failed!");
$row_title=mysqli_fetch_assoc($result_title);
$page_title=$row_title['username'];
}
else{
$page_title="No Page Found!";
}
break;
default:
$page_title="NSTU Newspaper";
break;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title><?php echo $page_title?></title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="css/font-awesome.css">
<!-- Custom stlylesheet -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- HEADER -->
<div id="header">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- LOGO -->
<div class=" col-md-offset-4 col-md-4">
<a href="index.php" id="logo"><img src="images/news.jpg"></a>
</div>
<!-- /LOGO -->
</div>
</div>
</div>
<!-- /HEADER -->
<!-- Menu Bar -->
<div id="menu-bar">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php
include "config.php";
if(isset($_GET['cid']))
{
$cat_id=$_GET['cid'];
}
$sql="SELECT * from category where post>0";
$result = mysqli_query($conn, $sql) or die("Query Failed: Category");
if(mysqli_num_rows($result) > 0){
$active="";
?>
<ul class='menu'>
<li><a href='http://localhost/NSTU_NEWSPAPER/'>Home</a></li>
<?php while($row = mysqli_fetch_assoc($result)) {
if(isset($_GET['cid']))
{
if($row['category_id']==$cat_id){
$active="active";
}
else{
$active="";
}
}
echo " <li><a class='{$active}' href='category.php?cid={$row['category_id']}'>{$row['category_name']}</a></li>";
}
?>
</ul>
<?php } ?>
</div>
</div>
</div>
</div>
<!-- /Menu Bar -->