first commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
class Browse extends WRB_Controller {
|
||||
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
public function index() {
|
||||
$data = array();
|
||||
|
||||
$data['page_title'] = "Login WrenchBoard";
|
||||
//$this->load->view('templates/header_boxed', $data);
|
||||
|
||||
|
||||
|
||||
$this->load->view('browse/view_browse', $data);
|
||||
$this->load->view('users/view_external_footer');
|
||||
}
|
||||
|
||||
private function browsePageData()
|
||||
{
|
||||
$mysql = "SELECT id,firstname FROM members";
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user