本文整理匯總了PHP中http::locationHeader方法的典型用法代碼示例。如果您正苦於以下問題:PHP http::locationHeader方法的具體用法?PHP http::locationHeader怎麽用?PHP http::locationHeader使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類http
的用法示例。
在下文中一共展示了http::locationHeader方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: web_install_add_user
/**
* function that alllows the install to add a user
*/
function web_install_add_user()
{
$layout = new layout('zimpleza');
$errors = array();
if (isset($_POST['submit'])) {
$_POST = html::specialEncode($_POST);
if (empty($_POST['pass1'])) {
$errors[] = 'Please enter a password';
}
if ($_POST['pass1'] != $_POST['pass2']) {
$errors[] = 'Not same passwords';
}
if (empty($_POST['email'])) {
$errors[] = 'Please enter an email';
}
if (!empty($errors)) {
html::errors($errors);
} else {
$db = new db();
$_POST = html::specialDecode($_POST);
$values = array();
$values['email'] = $_POST['email'];
$values['password'] = md5($_POST['pass1']);
// MD5
$values['username'] = $_POST['email'];
$values['verified'] = 1;
$values['admin'] = 1;
$values['super'] = 1;
$values['type'] = 'email';
$db->insert('account', $values);
http::locationHeader("/account/login/index", 'Account created. You may log in');
//web_install_add_user();
}
}
web_install_user_form();
}