當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Messages::setMsg方法代碼示例

本文整理匯總了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;
 }
開發者ID:comraq,項目名稱:practice-work,代碼行數:25,代碼來源:share.php

示例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;
 }
開發者ID:comraq,項目名稱:practice-work,代碼行數:22,代碼來源:user.php


注:本文中的Messages::setMsg方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。