本文整理汇总了PHP中displayWelcomeBack函数的典型用法代码示例。如果您正苦于以下问题:PHP displayWelcomeBack函数的具体用法?PHP displayWelcomeBack怎么用?PHP displayWelcomeBack使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了displayWelcomeBack函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: displayLoginBanner
function displayLoginBanner()
{
$userInfo = getCurrentUserInfo();
if (isset($userInfo)) {
displayWelcomeBack($userInfo);
} else {
displayLoginForm();
}
}
示例2: session_start
include_once 'php/piute_includes.php';
session_start();
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Piute Ponds and District 14</title>
<link href="PiuteMasterCSS.css" rel="stylesheet" type="text/css" />
<div id="apDiv2"><img src="images/Piute_Background_Image.jpg" width="720" height="778" alt="PiutePonds-Background_Image" /></div>
<div id="login"><span class="style9" id="heading1">
<?php
if (showLoginBanner()) {
$userInfo = getCurrentUserInfo();
if (isset($userInfo)) {
displayWelcomeBack($userInfo);
} else {
?>
<form method='POST' action='../php/login_action.php'>
<table>
<tr>
<td class="errorMessage" colspan="5"><?php
echoErrorMessages("login");
?>
</td>
</tr>
<tr>
<td>email:</td>
<td><input type='text' name='email'></td>
<td>password:</td>
<td><input type='password' name='password'></td>