forked from BNUACM/bnuoj-web-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscuss.php
32 lines (30 loc) · 889 Bytes
/
discuss.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
<?php
include_once("conn.php");
$proid = convert_str($_GET['pid']);
$pagetitle="Discuss";
if ($proid!="") $pagetitle=$pagetitle." For Problem ".$proid;
include("header.php");
include("menu.php");
?>
<div id="site_content">
<div id="one_content_container">
<div id="one_content_top"></div>
<div id="one_content">
<!-- insert the page content here -->
<div id='dcontent'>
<div class="center" style="margin:0"><img src="style/ajax-loader.gif" />Loading...</div>
</div>
</div>
<div id="one_content_base"></div>
</div>
</div>
<?php
include("footer.php");
?>
<script type="text/javascript">
var ppid='<?php echo $proid; ?>';
</script>
<script type="text/javascript" src="pagejs/discuss.js?<?php echo filemtime("pagejs/discuss.js"); ?>"></script>
<?php
include ("end.php");
?>