Skip to content

Instantly share code, notes, and snippets.

@jerry-maheswara-github
Created March 11, 2021 14:55
Show Gist options
  • Save jerry-maheswara-github/1ae8d4e0341106dde5b4a62cc790f625 to your computer and use it in GitHub Desktop.
Save jerry-maheswara-github/1ae8d4e0341106dde5b4a62cc790f625 to your computer and use it in GitHub Desktop.
<table border=1 cellpadding=5>
<tr>
<th>MISI</th>
<th>TUJUAN</th>
<th>SASARAN</th>
<th>PROGRAM</th>
</tr>
<?php
foreach ($data_misi as $m_value) {
echo '<tr>';
foreach ($m_value as $final_value) {
echo '<td rowspan=' . $final_value['rowspan'] . '>' . $final_value['name'] . '</td>';
}
echo '</tr>';
}
?>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment