= 20"; $qry = $this->db->query($sql, array($date)); if (! $qry ) print_r($this->db->error()); $rows = $qry->result_array(); $header = array ( "M_BranchCode" => "Branch", "TxBranchStatusM_BranchIP" => "IP Address", "TxBranchStatusJson" => "JSON" ); $this->show_result($rows,$header); } function show_result($rows,$header) { echo ""; echo ""; foreach($header as $h -> $t) { echo ""; } echo "\n"; foreach($rows as $r) { echo ""; foreach($header as $h -> $t) { echo ""; } echo "\n"; } echo "
{$t}
{$r[$h]}
"; } }