Created
March 11, 2021 14:55
-
-
Save jerry-maheswara-github/1ae8d4e0341106dde5b4a62cc790f625 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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