本文整理汇总了PHP中Messages::setMsg方法的典型用法代码示例。如果您正苦于以下问题:PHP Messages::setMsg方法的具体用法?PHP Messages::setMsg怎么用?PHP Messages::setMsg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Messages
的用法示例。
在下文中一共展示了Messages::setMsg方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add
public function add()
{
// Sanitize POST
$post = filter_input_array(INPUT_POST, FILTER_SANITIZE_STRING);
if ($post['submit']) {
if ($post['title'] == '' || $post['body'] == '' || $post['link'] == '') {
Messages::setMsg('Please Fill in All Fields', 'error');
return;
}
// Insert into MySQL Database
$this->query('INSERT INTO Shares (title, body, link, user_id)
VALUES(:title, :body, :link, :user_id)');
$this->bind(':title', $post['title']);
$this->bind(':body', $post['body']);
$this->bind(':link', $post['link']);
$this->bind(':user_id', $_SESSION['user_data']['id']);
$this->execute();
// Verify Query
if ($this->lastInsertId()) {
// Redirect
header('Location: ' . ROOT_URL . 'shares');
}
}
return;
}
示例2: login
public function login()
{
// Sanitize POST
$post = filter_input_array(INPUT_POST, FILTER_SANITIZE_STRING);
$password = md5($post['password']);
if ($post['submit']) {
// Check Login
$this->query('SELECT * FROM Users where email = :email
AND password = :password');
$this->bind(':email', $post['email']);
$this->bind(':password', $password);
$row = $this->single();
if ($row) {
$_SESSION['is_logged_in'] = true;
$_SESSION['user_data'] = array('id' => $row['id'], 'name' => $row['name'], 'email' => $row['email']);
header('Location: ' . ROOT_URL . 'shares');
} else {
Messages::setMsg('Incorrect Login', 'error');
}
}
return;
}