0

こんにちは、ユーザーがクリックできる単純な形式の画像があり、モーダル ダイアログでクリックした画像に応じて、データベースからのデータのリストが表示されます。これは、変数を介してではなく、mysql ステートメントで特定の列名を指定するものに対して機能します。ビューのmysqlステートメントで使用できるように、ビューからコントローラーに画像入力の値を渡す方法/場所を知りたい..私はすでにコントローラーからにmysqlステートメントを渡していますモデルをビューに。以下は私のコードです。私はCIが初めてで、少し混乱しているので、助けていただければ幸いです.Thanks!

コントローラ:

      <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

    class App extends MY_Controller {

function __construct()
{
    parent::__construct();

    log_message('debug', 'App controller has been initialized');
}

public function toolsmodal()
{
    $Dept = $this->input->post('submit');
    //echo $Dept;
    $this->load->model('tools_model');
    $tools = $this->tools_model->getTools($Dept);
    $data['tools'] = $tools;
    $data['view'] = 'datatables';
    $this->load->view('templates/default', $data);
}

public function index()
{


    $data['view'] = 'datatables';
    $this->load->view('templates/default', $data);


}

public function welcome()
{
    $data['view'] = 'welcome';
    $this->load->view('templates/default', $data);
}

public function datatables()
{
    // You can safely delete this method.  It is an example.
    $data['view'] = 'datatables';
    $this->load->view('templates/default', $data);

}


    }

モデル:

      class Tools_model extends CI_Model
      {
public function getTools($Dept)
{  

    //$query = $this->db->query("select rname,decription,DRI,developer, golive from web.reportdash where AppleStore = 'Yes'");
    $this->db->select('rname, decription, DRI, developer, golive');
    $this->db->where($Dept, 'Yes');
    $query = $this->db->get('web.reportdash');

    $tools = array();

    foreach ($query->result() as $row) {
        $tools[] = $row;
    }

    return $tools;
}

} ?>

見る:

     <table>
      <tr> 
<td style="text-align:center;font-weight:bold;width:300px;font-size:14px;color:       #ffffff;"><input type='image' id='filters-trigger-applestore' src="<? echo             base_url("/_assets/img/store.png"); ?>" name='submit' value='Store'>      <br>AppleStore</td>
    <td style="text-align:center;font-weight:bold;width:300px;font-size:14px;color:    #ffffff;">                 <input type='image' id='filters-trigger-storef' src="<? echo   base_url("/_assets/img/finance.png"); ?>"   name='submit' value='Finance'><br>Finance</td>
   <td style="text-align:center;font-weight:bold;width:300px;font-size:14px;color: #ffffff;"><input type='image' id='filters-trigger-storel' src="<? echo base_url("/_assets/img/logistics.png"); ?>" name='submit' value='Logistics'>     <br>Logistics</td>
  </tr>
<tr></tr>
<tr>
<td style="text-align:center;font-weight:bold;width:300px;font-size:14px;color: #ffffff;"><input type='image' id='filters-trigger-storeman' src="<? echo base_url("/_assets/img/manufacturing.jpg"); ?>" name='submit' value='Manufacturing'><br>Manufacturing</td>
<td style="text-align:center;font-weight:bold;width:300px;font-size:14px;color: #ffffff;"><input type='image' id='filters-trigger-storect' src="<? echo base_url("/_assets/img/control.jpg"); ?>" name='submit' value='ControlTower'><br>Control Tower</td>
<td style="text-align:center;font-weight:bold;width:300px;font-size:14px;color: #ffffff;"><input type='image' id='filters-trigger-storeom' src="<? echo base_url("/_assets/img/OM.jpg"); ?>" name='submit' value='OrderManagement'><br>Order Management</td>
</tr>

<td style="text-align:center;font-weight:bold;width:300px;font-size:14px;color: #ffffff;">  <input type='image' id='filters-trigger-stores' src="<? echo base_url("/_assets/img/sales.jpg"); ?>"                name='submit' value='Sales'><br>Sales</td>

</tr>
</table>
</form>

 </div>

 <div class="container">
  <div class="filters-trigger-applestorem not-displayed modal1 hide fade in" style="overflow:auto;">
<button type="button" id='close' class="close" data-dismiss="filters-trigger-applestorem">×</button>   
<table class="table table-bordered smaller-font margin-top-medium" style="margin: 0;">
<thead>
<tr>
<td>Report Name</td>
<td>Description</td>
<td>DRI</td>
<td>Developer</td>
</tr>
</thead>
<tbody>
                <?php foreach($tools as $tool):
                ?>
                    <tr class="padding-larger-right table-header"><td><?= $tool->rname; ?>    </td>
                    <td class="smaller-padding vertical-centred"><?= $tool->decription; ?></td>
                    <td class="smaller-padding vertical-centred"><?= $tool->DRI; ?></td>
                    <td class="smaller-padding vertical-centred"><?= $tool->developer; ?></td>
                <?php
                endforeach ?>



                </tbody>
            </table>



</div>

4

1 に答える 1

0

こんにちは、モデルを変更してください。モデル $tool 配列の for ループは、古い配列を上書きするたびに常に最後の行のみを持ちます。

    class Tools_model extends CI_Model
      {
public function getTools($Dept)
{  

    //$query = $this->db->query("select rname,decription,DRI,developer, golive from web.reportdash where AppleStore = 'Yes'");
    $this->db->select('rname, decription, DRI, developer, golive');
    $this->db->where($Dept, 'Yes');
    $query = $this->db->get('web.reportdash');

    return $query->result();

}

} ?>

今すぐビューで簡単にループできます

于 2013-05-08T18:03:55.973 に答える