本文整理汇总了PHP中make_footer函数的典型用法代码示例。如果您正苦于以下问题:PHP make_footer函数的具体用法?PHP make_footer怎么用?PHP make_footer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了make_footer函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: container
echo $base_url;
?>
/img/left.png" title="Go to the container (control + left arrow)" alt="^" onclick="todo_previous()"/><div class="help_bottom">Go to the previous collection or document to assess.<br/><b>Shortcut</b>: <code>u</code> key</div></span>
<span><img src="<?php
echo $base_url;
?>
/img/up.png" title="Go to the container (control + up arrow)" alt="^" onclick="goUp()"/><div class="help_bottom">Go to the innermost containing collection. <br/><b>Shortcut</b>: <code>control + up arrow</code></div></span>
<span><img src="<?php
echo $base_url;
?>
/img/right.png" title="Go to the container (control + right arrow)" alt="->" onclick="todo_next()"/><div class="help_bottom">Go to the NEXTlection or document to assess.<br/><b>Shortcut</b>: <code>control + left arrow</code></div></span>
</span>
</div>
</div>
<script language="javascript" src="<?php
echo $base_url;
?>
/js/collection.js"/>
<script language="javascript">
up_url = "<?php
echo $up_url;
?>
";
document.onkeypress = collection_keypress;
</script>
<? } make_footer(); ?>
示例2: make_footer
<br>
<br>
The original development team was heavily influenced by Professor Graham F. Carey, professor of aerospace engineering and engineering mechanics at The University of Texas at Austin, director of the ICES Computational Fluid Dynamics Laboratory, and holder of the Richard B. Curran Chair in Engineering.
<br>
<br>
Many of the technologies employed in libMesh were implemented because Dr. Carey taught them to us, we went back to the lab, and immediately began coding. In a very real way, he was ultimately responsible for this library that we hope you have found useful, despite his continued insistence that "no one ever got a PhD from here for writing a code."
<br>
<br>
Dr. Carey passed away on Friday, September 16, 2011 at the age of 66. We hope that if you have found this library useful in your work you would consider a donation to <a href="http://www.ices.utexas.edu/memorial/GrahamCarey/careyscholarshipfund/">The Graham F. Carey Computational Science Scholarship</a> to help train the next generation of libMesh developers.
</div>
<?php
make_footer();
?>
</body>
</html>
<?php
if (0) {
?>
# Local Variables:
# mode: html
# End:
<?php
}
示例3: Header
if ($elements[0] == "delete" && ADMIN) {
$sql->db_Delete("wiki", "page_title='" . $row['page_title'] . "' ");
Header("Location: ./");
}
}
} elseif (!isset($_GET['page'])) {
// list of last 10 pages added or modified
$title = LAN_W_3;
$sql->db_Select("wiki", "*", "page_active = 1 ORDER BY page_datestamp DESC LIMIT 0,10", true);
$content = make_links($sql->db_getList());
} else {
$page = mysql_real_escape_string($_GET['page']);
$count = $sql->db_Select("wiki", "*", "page_title = '" . $page . "' and page_active=1", true);
if ($count > 0) {
// Page does exists
$row = $sql->db_Fetch();
$title = $row['page_title'];
$content = make_content($row);
$has_page = $row['page_id'];
} elseif (check_perm()) {
$title = "New Page";
$content = "" . page_form(array());
} else {
// Page not found
$title = LAN_W_1;
$content = LAN_W_2;
}
}
require_once HEADERF;
$ns->tablerender($title, $content . make_footer($has_page));
require_once FOOTERF;