View difference between Paste ID: BqDT3D39 and fT4rUdkU
SHOW: | | - or go back to the newest paste.
1
<?php 
2-
	$query = "select * from table_a";
2+
	$result_a = $this->a_model->get_all();              //$query="select * from table_a";
3-
	foreach($query as $row):
3+
	foreach($result_a as $row):
4
?>
5
	<ul>
6
		<li><?= $row->id_a?></li>
7-
			<?php $queyr = "select * from table_b where id_a = $row->id_a" ?>
7+
			<?php 
8-
			<?php foreach($query as $row):?>
8+
//$queyr = "select * from table_b where id_a = $row->id_a";
9
            $result_b = $this->b_model->get_by($row->id_a, 'id');    
10
 ?>
11
			<?php foreach($result_b as $row):?>
12
				<ul>
13
					<li><?= $row->id_b ?></li>
14
				</ul>
15
			<?php endforeach ?>
16
	</ul>
17
<?php endforeach ?>