отобразить все записи, где внешний ключ равен id в модальном

Я хочу отобразить все записи из таблицы транзакций в модальный режим, где транзакции «records_id» равен записи «ID», но затем отображать только текущую строку зацикленной ссылки, которая является «Нажмите здесь». Извините за мой английский, но я надеюсь, что вы понимаете. Пожалуйста, всем! Спасибо!

View:

<?php foreach ($results as $row): ?>
<tr>
<td> <input name="checkbox_<? echo $rows['ID']; ?>" type="checkbox"              id="checkbox[]" value="1"> </td>
<td><?php echo $row->ID; ?></td>
<td><?php echo $row->last_name; ?></td>
<td><?php echo $row->first_name; ?></td>
<td><?php echo $row->middle_name; ?></td>
<td>
<a href="#transaction" data-toggle="modal"id="<? echo $rows['ID']; ?>"> Click Here </a>
</td>
</tr>
<?php endforeach; ?>

/* Modal */
<!-- Transaction Pop-Up Window -->
<div class="modal fade" id="transaction">
<div class="modal-dialog">
<div class="modal-content">

<!-- Transaction Header -->
<div class="modal-header">
<button class="close" data-dismiss="modal"> </button>
</div>

<!-- Transaction Body -->
<div class="modal-body">
<table class="table table-striped table-bordered col-xs-12">
<thead>
<tr>
<th> Concern </th>
<th> Treatment </th>
<th> Status </th>
</tr>
</thead>

<tbody>
<?php foreach ($results3 as $row): ?>
<tr>
<td> <?php echo $row ->concern; ?> </td>
<td> <?php echo $row ->treatment; ?> </td>
<td> <?php echo $row ->status; ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>

</div>
</div>
</div>model:

function display3()
{
$query = $this->db->query('SELECT * FROM transactions, records WHERE            transactions.records_id = records.ID');
return $query->result();
}controller:

$this -> load -> model('model_admin');
$data['results'] = $this -> model_admin -> display();

$this -> load -> model('model_admin');
$data['results2'] = $this -> model_admin -> display2();

$this -> load -> model('model_admin');
$data['results3'] = $this -> model_admin -> display3();
$this -> model_admin -> display3($data);$this -> load -> view('admin_home_view', $data);

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]