-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews_details.php
37 lines (29 loc) · 1.07 KB
/
news_details.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
<?php
include("includes/header.php");
?>
<?php
$id=$_REQUEST['id'];
$query="select * from news_upload where id=$id";
//echo $query;
$result=mysql_query($query);
$row=mysql_fetch_array($result);
?>
<style>
.news_content{ width:500px; height:400px; margin:0 0 0 220px; padding:0 0 0 60px;}
</style>
<div class="wrapper col3">
<div id="container">
<div class="news_content">
<div id="aboutus" style="width:320px; height:50px; text-align:center; padding:0 0 0 20px;"><strong><h1>News Detail</h1></strong></div>
<div class="detail_font"><b>HERE IS THE TITLE</b></div>
<div class="detail_font"><?php echo $row["news_title"];?></div><br/>
<div class="detail_font" style="width:420px;"><strong>HERE IS DETAIL</strong></div><br/>
<div class="detail_font" style="width:420px;"><?php echo $row["news_details"];?></div><br/>
<div class="detail_font"><strong>DATE</strong></div>
<div class="detail_font"><?php echo $row["date"];?></div>
</div>
</div>
</div>
<?php
include("includes/footer.php");
?>