本文整理汇总了PHP中footer函数的典型用法代码示例。如果您正苦于以下问题:PHP footer函数的具体用法?PHP footer怎么用?PHP footer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了footer函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: sidebarEnd
function sidebarEnd()
{
?>
</div>
</div>
</section>
<?php
footer('');
}
开发者ID:Braatan,项目名称:Engrave,代码行数:9,代码来源:gebruikerspaneel.php
示例2: ugig_err
function ugig_err($err_code)
{
echo "<h1>Error</h1>";
echo "<br><br><br>";
switch ($err_code) {
default:
echo " ";
break;
}
echo "<br><br><a href=\"./\">Click Here, and start over</a>";
footer();
die;
}
开发者ID:speakzzz,项目名称:Core,代码行数:13,代码来源:index.php
示例3: createPage
function createPage($path, $menu = null)
{
ob_start();
chdir(dirname($path));
include $path;
$content = ob_get_contents();
ob_end_clean();
page_create(strtok($content, "\n"), $menu);
ob_start();
footer();
$footer = ob_get_contents();
ob_end_clean();
$content = substr($content, strpos($content, "\n") + 1);
echo <<<EOF
<div id="content">
\t{$content}
</div>
<div id="footer">
\t{$footer}
</div>
</body>
</html>
EOF;
}
开发者ID:mrpiggypigpig,项目名称:CMS,代码行数:24,代码来源:template.php
示例4: fontCursive
echo fontCursive($layout->text6_cursive);
?>
</td>
<td><?php
echo fontBold($layout->text7_bold);
?>
<?php
echo fontCursive($layout->text7_cursive);
?>
</td>
<td><a href="?actie=wijzigen&id=<?php
echo $layout->id;
?>
" <i class="fa fa-pencil" title="Wijzigen"></i></a></td>
<td><a href="?actie=verwijderen&id=<?php
echo $layout->id;
?>
" <i class="fa fa-times color-dark-red" title="Verwijderen"></i></a></td>
</tr>
</tbody>
<?php
}
echo '</table>';
}
}
echo '</div>
</div>
</section>';
}
footer('');
开发者ID:Braatan,项目名称:Engrave,代码行数:30,代码来源:stijlen.php
示例5: htmlPage
function htmlPage($title, $content)
{
echo "<!DOCTYPE html>\n<html>\n<head>\n\t<title>{$title}</title>\n\t<style>\n";
echo styling();
echo "</style>\n\t<script type=\"text/javascript\" src=\"https://www.google.com/jsapi\"></script>\n</head>\n<body>\n";
echo $content;
echo footer();
echo "</body>\n</html>\n";
}
开发者ID:resound,项目名称:140History,代码行数:9,代码来源:get.php
示例6: basename
if (!empty($_SESSION['freecap_word_hash']) and !empty($_POST['word'])) {
if (sha1(strtolower($_POST['word'])) == $_SESSION['freecap_word_hash']) {
$_SESSION['freecap_word_hash'] = false;
$word_ok = "yes";
} else {
$word_ok = "no";
}
} else {
$word_ok = FALSE;
}
echo '<form id="preferences-captcha" action="' . basename($_SERVER['PHP_SELF']) . '?test_captcha" method="post" class="bordered-formbloc" >' . "\n";
echo '<div role="group" class="pref">';
echo '<div class="form-legend">' . legend('Captcha', 'legend-config') . '</div>' . "\n";
echo '<p>';
if ($word_ok !== FALSE) {
if ($word_ok == "yes") {
echo '<b style="color: green;">you got the word correct, rock on.</b>';
} else {
echo '<b style="color: red;">sorry, that\'s not the right word, try again.</b>';
}
}
echo '</p>';
echo '<p><img src="../inc/freecap/freecap.php" id="freecap" alt="freecap"/></p>' . "\n";
echo '<p>If you can\'t read the word, <a href="#" onclick="new_freecap();return false;">click here to change image</a></p>' . "\n";
echo '<p>word above : <input type="text" class="text" name="word" /></p>' . "\n";
echo '<input class="submit blue-square" type="submit" name="valider" value="' . $GLOBALS['lang']['envoyer'] . '" />' . "\n";
echo '</div>';
echo '</form>' . "\n";
}
footer('', $begin);
开发者ID:CamTosh,项目名称:blogotext,代码行数:30,代码来源:preferences.php
示例7: footer
</div>
<div class="form‐group">
<label for="txtMarca">Marca</label>
<input type="text" <?php
echo 'value="' . $modificar->marca . '"';
?>
class="form-control" id="txtMarca" name="txtMarca1" placeholder="Marca" required autofocus>
</div>
<input type="submit" value="Acutalizar" name="btnUpdVehi" class="btn btn-primary btn-block">
<input type="reset" value="Cancelar" class="btn btn-default btn-block">
</form>
</div>
</div>
<?php
footer('
$("#addVehi").click(function(){
$("#addForm").css("display","block");
$("#delForm").css("display","none");
$("#updForm").css("display","none");
});
$("#delVehi").click(function(){
$("#addForm").css("display","none");
$("#delForm").css("display","block");
$("#updForm").css("display","none");
});
$("#updVehi").click(function(){
$("#addForm").css("display","none");
$("#delForm").css("display","none");
$("#updForm").css("display","block");
});
');
开发者ID:CEMZ,项目名称:Privado,代码行数:31,代码来源:adminVehiculos.php
示例8: footer
<table border="1" width="625px" style="text-align: center">
<tr>
<td colspan="2"><b>Enter your Email address:</b></td>
</tr>
<tr>
<td align="right">Email Address: </td>
<td align="left"><input type="text" name="email" size="40"></td>
</tr>
<?php
if ($message != '') {
?>
<tr>
<td colspan="2" align="center"><font color=red><b><?php
print $message;
?>
</b></font></td>
</tr>
<?php
}
?>
<tr>
<td colspan="2" align="center"><input type="submit" name="reset" value="Reset Password"></td>
</tr>
</table>
</center>
</form>
<?php
footer("Return to Login", "login.php");
?>
</body>
</html>
开发者ID:poetimp,项目名称:ltcsw,代码行数:31,代码来源:ForgotPassword.php
示例9: footer
echo $date;
?>
<?php
echo $caption;
?>
</h3>
<hr />
<?php
echo $text;
?>
<hr />
<p class="c">
<a href="./public.php">[на главную страницу прессы]</a>
</p>
<?php
}
//окончание обработчки параметров
}
//конец обработки $error
?>
</div>
<div class="cleaner">
</div>
</div>
</div>
<?php
footer('tournament');
?>
</body>
</html>
开发者ID:bearf,项目名称:xicl-web-interface,代码行数:30,代码来源:public.php
示例10: dateLinks
$class2 = "OsRow3";
$rownum = 0;
} else {
$class1 = "OsRow2";
$class2 = "OsRow4";
$rownum = 1;
}
// Now display the data
echo " <tr id=" . $class1 . ">\n";
echo " <td id=" . $class2 . ">" . $callrow . "</td>\n";
// Call
echo " <td id=" . $class2 . " align=\"right\">" . $myrow[1] . "</td>\n";
// Total
echo " <td id=" . $class2 . ">" . $myrow[2] . "</td>\n";
// Comments
echo " </tr>\n";
}
echo "</table>\n";
echo "<P>\n";
dateLinks($period, "sar", $db);
echo "</center>\n";
?>
</div>
<?php
sectLeaders($db);
footer($starttime, $maxdate, "\$Revision: 1.14 \$ - \$Date: 2007/08/31 19:15:05 \$");
?>
</div>
</body>
</html>
开发者ID:jjmcd,项目名称:mi-arpsc,代码行数:30,代码来源:sar.php
示例11: Promptmsg
function Promptmsg($msg, $tostep = null, $fromstep = null, $lastid = null)
{
@extract($GLOBALS, EXTR_SKIP);
require R_P . 'lang/install_lang.php';
$lang['showmsg'] = $lang['showmsg_upto'];
$lang['welcome_msg'] = $lang['welcome_msgupto'];
if (empty($tostep)) {
$url = 'javascript:history.go(-1);';
$lang['last'] = $lang['back'];
} else {
$url = "window.location.replace('{$basename}?step={$tostep}');";
$lang['last'] = $lang['redirect'];
}
$lang[$msg] && ($msg = $lang[$msg]);
if (!empty($fromstep) && $times == $record && empty($lastid)) {
list($stepnum, $steptype) = explode('_', $start);
$end = (int) $stepnum + $record;
strlen($steptype) && ($end .= "_{$steptype}");
$url = "window.location.replace('{$basename}?step={$fromstep}&start={$end}');";
} elseif (!empty($fromstep) && $times == $record && $lastid) {
list($stepnum, $steptype) = explode('_', $start);
$end = (int) $lastid;
strlen($steptype) && ($end .= "_{$steptype}");
$url = "window.location.replace('{$basename}?step={$fromstep}&start={$end}');";
}
if ($limit < $max) {
$url = "window.location.replace('{$basename}?step={$fromstep}&start={$limit}');";
}
$msg = preg_replace("/{#(.+?)}/eis", '$\\1', $msg);
require R_P . 'lang/promptmsg.htm';
footer();
}
开发者ID:sherlockhouse,项目名称:aliyun,代码行数:32,代码来源:up_function.php
示例12: footer
<button class="btn btn-default" type="button"><i class="fa fa-clock-o"></i></button>
</span>
</div>
</div>
</div>
-->
</div>
<div id="emp_place_here">
</div>
</div>
</form>
<?php
}
?>
</div>
</div>
</div>
</div>
<?php footer(); js();?>
</body>
<!-- END BODY -->
</html>
开发者ID:NileshTailor,项目名称:dream,代码行数:31,代码来源:emp_menu.php
示例13: Promptmsg
function Promptmsg($msg, $toaction = null, $jump = false)
{
@extract($GLOBALS, EXTR_SKIP);
$lang[$msg] && ($msg = $lang[$msg]);
$msg = preg_replace("/{#(.+?)}/eis", '$\\1', $msg);
$url = $backurl = 'javascript:history.go(-1);';
if (!$toaction) {
$lang['last'] = $lang['back'];
@unlink("log{$step}.txt");
} else {
$url = "document.getElementById('install').submit();";
}
ob_start();
require_once R_P . 'lang/header.htm';
require R_P . 'lang/promptmsg.htm';
footer();
}
开发者ID:sherlockhouse,项目名称:aliyun,代码行数:17,代码来源:install.php
示例14: footer
</li>
</ul>
<a href="../" class="btn btn-l"><i class="fa fa-arrow-circle-o-left"></i> Back to Home</a>
</div>
</div> <!-- end signupWrapper -->
</div> <!-- end participantSignup -->
</div>
</section>
<!-- Footer -->
<?php
include "../includes/footer.php";
footer(true);
?>
<!-- Javascript -->
<?php
include "../includes/js.php";
js(true);
?>
</body>
</html>
开发者ID:T9Hacks,项目名称:t9hacks-spring2016,代码行数:31,代码来源:signup-success.php
示例15: floraFilterUrl
echo floraFilterUrl(["page" => $page - 1]);
?>
" title="Vorige pagina" onClick="dynamicLink(this);" class="pull-left<?php
echo $page > 1 ? '' : ' disabled';
?>
"><i class="fa fa-chevron-left"></i> Vorige pagina</a>
<a href="<?php
echo floraFilterUrl(["page" => $page + 1]);
?>
" title="Volgende pagina" onClick="dynamicLink(this);" class="pull-right<?php
echo $page < $pages ? '' : ' disabled';
?>
">Volgende pagina <i class="fa fa-chevron-right"></i></a>
<div class="text-center">Pagina <?php
echo $page;
?>
van de <?php
echo $pages;
?>
pagina's</div>
</div>
</div>
<?php
}
?>
</div>
</div>
</section>
<?php
footer('<script src="/js/flora-database.js"></script>');
开发者ID:Braatan,项目名称:Engrave,代码行数:30,代码来源:flora-database.php
示例16: footer
print $row['Grade'];
?>
</td>
<td width="70" align="center"> <?php
print $row['ParticipantID'];
?>
</td>
<td>
<a href="AdminSoloEvents.php?ID=<?php
print $row['ParticipantID'];
?>
" >
<?php
print $row['LastName'] . ", " . $row['FirstName'];
?>
</a>
</td>
</tr>
<?php
}
?>
</table>
<?php
footer("", "");
?>
</body>
</html>
开发者ID:poetimp,项目名称:ltcsw,代码行数:30,代码来源:SignupSoloEvents.php
示例17: floor
$manhours = $myrow[3] / $myrow[4] * $myrow[1];
$manhours = floor(100 * $manhours + 0.005) / 100;
$TMH = $TMH + $manhours;
}
}
}
// Display totals
if ($rownum != 0) {
$id = 'id="OsRow3"';
echo " <tr id=OsRow>\n";
$rownum = 0;
} else {
$id = 'id="OsRow4"';
echo " <tr id=OsRow2>\n";
$rownum = 1;
}
echo "<th align=\"left\">{$periodname}<td {$id} align=\"right\">" . $TQNI . "<td {$id} align=\"right\">" . $TQTC . "<td {$id} align=\"right\">" . round($TQTR) . "<td {$id} align=\"right\">" . $TSess . "<td {$id} align=\"right\">" . round($TMH) . "</tr>\n";
}
echo "</table>\n";
echo "<p></p>\n";
echo "</center>\n";
?>
</div>
<?php
sectLeaders($db);
footer($starttime, $maxdate, "\$Revision: 1.2 \$ - \$Date: 2012-06-15 14:15:27-05 \$");
?>
</div>
</body>
</html>
开发者ID:jjmcd,项目名称:mi-nts,代码行数:30,代码来源:nettotals.php
示例18: dateLinks
// sent
echo " <td id=" . $class2 . " align=\"right\">" . $myrow[4] . "</td>\n";
// recd
if ($Dbo == 0) {
echo " <td id=" . $class2 . " align=\"right\">" . $myrow[5] . "</td>\n";
} else {
echo " <td id=" . $class2 . " align=\"right\"><b>" . $myrow[5] . "</b></td>\n";
}
// deld
if ($Tbo == 0) {
echo " <td id=" . $class2 . " align=\"right\">" . $myrow[1] . "</td>\n";
} else {
echo " <td id=" . $class2 . " align=\"right\"><b>" . $myrow[1] . "</b></td>\n";
}
// Total
echo " </tr>\n";
}
echo "</table>\n";
echo "<P>\n";
dateLinks($period, "bpl", $db);
echo "</center>\n";
?>
</div>
<?php
sectLeaders($db);
footer($starttime, $maxdate, "\$Revision: 1.16 \$ - \$Date: 2008-01-22 19:28:25-05 \$");
?>
</div>
</body>
</html>
开发者ID:jjmcd,项目名称:mi-nts,代码行数:30,代码来源:bpl.php
示例19: getResult
$q6 = $q6 . $testperiod;
$r6 = getResult($q6, $db);
$row6 = getRow($r6, $db);
if ($row6[0] > 0) {
$url = "Summary.php?period=" . $testperiod;
echo " <td class=\"" . $rowclass . "\"><a href=\"" . $url . "\">Fwd 1m></a></td>\n";
} else {
echo " <td class=\"" . $rowclass . "\">Fwd 1m></td>\n";
}
$q6 = "SELECT COUNT(*) FROM `arpsc_ecrept` WHERE `period`=";
$testperiod = (int) $p9 + 3;
$q6 = $q6 . $testperiod;
$r6 = getResult($q6, $db);
$row6 = getRow($r6, $db);
if ($row6[0] > 0) {
$url = "Summary.php?period=" . $testperiod;
echo " <td class=\"" . $rowclass . "\"><a href=\"" . $url . "\">Fwd 1Q>></a></td>\n";
} else {
echo " <td class=\"" . $rowclass . "\">Fwd 1Q>></td>\n";
}
echo " </table>\n";
echo " <p> </p>\n";
echo " </center>";
echo " </div>\n\n";
sectLeaders($db);
footer($starttime . "Z", $maxdate, "\$Revision: 1.0 \$ - \$Date: 2008-10-15 15:08:57-04 \$");
?>
</div>
</body>
</html>
开发者ID:jjmcd,项目名称:mi-arpsc,代码行数:30,代码来源:Summary.php
示例20: Attendly
<?php
require_once 'html.php';
require_once 'settings.php';
require_once '../src/Attendly.php';
$api = new Attendly(API_USER, API_KEY);
// Get a group
$groups = $api->group_list();
// Get the events in that group
$out = $api->event_list('group', $groups['Result'][0]['ID']);
echo head();
echo '<h1>Event list for group <small>' . $groups['Result'][0]['Name'] . '</small></h1><pre><code class="JSON">';
echo print_r($out, TRUE);
echo '</code></pre>' . footer();
开发者ID:attendly,项目名称:attendly-php,代码行数:14,代码来源:eventlistgroup.php
注:本文中的footer函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论