當前位置: 首頁>>代碼示例>>PHP>>正文


PHP make_footer函數代碼示例

本文整理匯總了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(); ?>

開發者ID:BackupTheBerlios,項目名稱:x-rai-svn,代碼行數:29,代碼來源:collections.php

示例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 
}
開發者ID:GaZ3ll3,項目名稱:libmesh,代碼行數:30,代碼來源:support.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;
開發者ID:alcides,項目名稱:e107wiki,代碼行數:31,代碼來源:index.php


注:本文中的make_footer函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。