This commit is contained in:
2020-02-05 18:40:57 -05:00
parent 67159b0132
commit ef95717d7c
6 changed files with 72 additions and 16 deletions
+9 -4
View File
@@ -5,16 +5,21 @@ defined('BASEPATH') OR exit('No direct script access allowed');
class Member extends Member_Controller {
public function index() {
$data = array();
$mysql = "SELECT * FROM members_pages WHERE member_id =5";
$r = $this->db->query($mysql);
$f = $r->row_array();
$this->renderMemberPages('view_dash', $data);
}
public function mycalendar(){
public function mycalendar() {
$data = array();
$this->renderMemberPages('view_mycalendar', $data);
}
}