📄 view_post.php
字号:
<?php // include function libraries include ('include_fns.php'); $postid = $_GET['postid']; // get post details $post = get_post($postid); do_html_header($post['title']); // display post display_post($post); // if post has any replies, show the tree view of them if($post['children']) { echo '<br /><br />'; display_replies_line(); display_tree($_SESSION['expanded'], 0, $postid); } do_html_footer();?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -