-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathroll.php
More file actions
38 lines (36 loc) · 798 Bytes
/
roll.php
File metadata and controls
38 lines (36 loc) · 798 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>成电优秀百科</title>
<link rel="stylesheet" type="text/css" href="pages.css">
</head>
<?php
include 'app/conn.php';
$id=$_GET['id'];
$sql="select * from roll where id = $id";
$result=mysql_query($sql);
@$row=mysql_fetch_array($result);
?>
<body>
<div id="banner">
<img src="images/title.gif">
</div>
<div id="container">
<div id="news">
<div id="header">
<h1><?php echo $row['title']; ?></h1>
</div>
<div id="main" style="height:2900px">
<img src="upload/<?php echo "$row[image]"; ?>" style="height:650px">
<div id="body">
<p>
<?php echo "$row[content]"; ?>
</p>
</div>
</div>
<div id="foot">
Copyright ?2015 [电子科技大学] Powered By [star studio] Version 1.0.0
</div>
</body>
</html>