本文整理汇总了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();
}